| Thread | Last Post | Replies |
|
| Events Capturing in Untyped Dataset | 07 Sep 2005 15:32 GMT | 1 |
Hope somebody can help me with this. I have a Dataset and BindingManagerBase declared :- ******************************************** Private dsData As DataSet
|
| Typed Dataset Error - 2 FKs from same table | 07 Sep 2005 14:22 GMT | 6 |
What I have is a table (Clients) that I have created 2 relationships (FKs in DB) pointing to another table (Setups). I have a BillFrom Client and a BillTo Client. I get a compile error: InvoicesTDS.cs(2839): The class 'BusinessEntities.InvoicesTDS.Setup' already contains a ...
|
| Get cleartext of sqlCommand.Text (including parameters)? | 07 Sep 2005 14:13 GMT | 1 |
i have lets say a simple sqlCommand with text: Select * from test where sColor = @sColor Now i instantiate the sqlCommand and add the parameter with value "blue" for example. Now I want to get the commandtext as "cleartext" without
|
| ASP.NET Server side debugging Error in Hello World | 07 Sep 2005 14:11 GMT | 1 |
I'm new to the ASP.NET /.NET programming so excuse my very basic question. I was trying to write the Hello World Application using ASP.Net using C# in Visual Studio.Net When I debug the application I get the error.....
|
| updating related tables in proper order | 07 Sep 2005 13:09 GMT | 6 |
I have multiple related tables in the database which contains customer accounts. I'm loading single account data from those tables into multiple DataTables within the same DataSet. Any changes can be made with the data: records can be added, deleted, edited. Because of PK/FK ...
|
| Using a datagrid to update values in sql server (best practice) | 07 Sep 2005 10:31 GMT | 1 |
I want to pull information from a table in sql server, bind it to a grid and update those values. I would like to know the best way to do it. I used the configure data adapter wizard and it came up with a crazy stored proc. As in this example I would only update [start date]
|
| Multiple Database Support - .NET 2.0 | 07 Sep 2005 08:54 GMT | 9 |
We are in the inception phase of architecting a .NET based multi tier application. Due to the .NET technology advancements, we have decided to go with .NET 2.0 beta 2 for development. One of the objectives is to support multiple databases (SQL, SYBASE, ORACLE
|
| unicode / ANSI question with parameters | 07 Sep 2005 08:21 GMT | 1 |
I have a question regarding the following senario: I have a query (not a stored procedure): "SELECT memberID, email from tbl_User Where login = @login" And then I use the addWithValue method new to 2.0 to add it like the
|
| How efficient are datatables? Can they have indexes? | 07 Sep 2005 07:19 GMT | 8 |
Can someone please tell me if ado.net datatables are efficient for searching? I am thinking of a model whereby at intial startup, I populate 'all' of the data for the application into a multi table dataset (say 5-10 tables each holding between 1000 and 100000 rows).
|
| OnItemDataBound event | 07 Sep 2005 07:18 GMT | 3 |
the OnItemDataBound event is called on initialisation of each row in the grid how can i stop this event when loading the grid for the first time?
|
| getting the datatype of a datarow item | 07 Sep 2005 07:10 GMT | 1 |
I'm using a dataset to store user settings in Isolated Storage. I have a method, GetSettng(settingName) which returns a setting for a given settingname. I want to return default values for a setting if they have not been initialized (set) yet, so I need to know the datatype of ...
|
| Field too small | 07 Sep 2005 01:22 GMT | 4 |
On a VS.net 2003 aspx page I want to upload a graphic file into an Access database. The field name is FileData and the data type is OLE Object (should be good for 1 gig) When I upload a file (gif file about 78 kb) I get the message from the server:
|
| Cannot add new row to DataSet | 07 Sep 2005 01:18 GMT | 7 |
I'm populating a DataSet using a stored procedure.When I have at least one record returned I can add a new row to the DataSet, but if I don't get any records and I try to add a new row I get "No table defined", or something like that.
|
| DatetIme using in Access database | 06 Sep 2005 22:52 GMT | 8 |
I'm using access database and there is a table and it has a field type is DateTime. Question-1 ) I want to save date and time in the database but While saving DateTime
|
| Typed dataset and databinding | 06 Sep 2005 21:37 GMT | 2 |
I have a problem with a typed dataset. First I wrote a simple program that fetched one table from SQL Server 2000 to an UNTYPED dataset. Let's say, the table was called Table. 1. I added an untyped dataset in designer
|