| Thread | Last Post | Replies |
|
| DataSet, Relation, IsNested and WebService | 04 Dec 2004 16:47 GMT | 1 |
If I want to provide a typed dataset from a webservice and if that dataset has relations that are nested (isNested=True), then the relations(keyrefs) are not available in the XSD that is offered. If I set IsNested to false or default, then it is included in the XSD.
|
| Incorrect in passing parameters | 04 Dec 2004 16:34 GMT | 1 |
I received an error: System.NullReferenceException: Object reference not set to an instance of an object at GenerateA(String& strEmpID, String& strClientAcct, String& strAcctStatus). When I run the debug, and in the command line I entered ?strEmpID, and
|
| ado.net exception from raiserror | 04 Dec 2004 14:48 GMT | 1 |
In a couple of stored procedures (SQL Server 2000) im doing: raiserror('aaa',16,1) return 1 My understanding was that this should throw an exception in my C# code. But
|
| Error: ArgumentOutOfRangeException on stringbuilder | 04 Dec 2004 08:55 GMT | 1 |
Hi experts, I wrote a function to use stringbuilder for a fix length text delimited file for banking stuff. I received an error on strResult.Insert(141, "".PadLeft(21, " "))
|
| Dataset Error:IndexOutofRangeException | 04 Dec 2004 06:14 GMT | 1 |
Hi experts, I have a dataadapter and datasets. I debugged it and gave me an error on LName = DS.Tables("AcctInfoTble").Rows(1)("LASTNAME")
|
| "Cannot create a child list for field MyTable" | 04 Dec 2004 00:12 GMT | 1 |
I'm having a frustrating problem trying to set up a master-detail relationship between 2 datagrids. I've used DataSets extensively before, but only in code and basically only in a disconnected state. Now as I try to set up this simple master-detail thing, I'm having problems.
|
| data adapter update using datatable that has MANY changes | 03 Dec 2004 21:04 GMT | 3 |
I magine that I have a listbox that is bound to a data table. This means that there is the possiblity that the data table will have new rows, edited rows, and/or deleted rows. After everything is done, I would like, at the push of a button, to
|
| Can you package a oledb data provider? | 03 Dec 2004 16:14 GMT | 1 |
Is it possible to package a oledb data provider? I need to be able to access an iSeries machine, but the server that the program is being installed on does not have the ibmda400 provider. The easy way would be to install
|
| include rowstate in dataset.getxml | 03 Dec 2004 15:37 GMT | 2 |
Hi Gurus, how can i include rowstate value in dataset.getxml string <datatable> <row1 state="Added">
|
| Value in output parameter not accessable | 03 Dec 2004 14:39 GMT | 2 |
I am using the Microsoft Data Application Block to access a database and am trying to execute the following stored procedure: CREATE PROCEDURE WhiteboardPostItem @Id int OUTPUT,
|
| Create Stored procedure | 03 Dec 2004 14:31 GMT | 6 |
Hi, there I want to create a Stored procedure for my Access database using the code below. ' Conn is an opened connection to my Access database
|
| deleting rows in one-to-many relationship | 03 Dec 2004 12:00 GMT | 3 |
Dear Ng, I have a 1(master table) : n(first child table) : m(second child table) relationship in my sql server and strongly typed dataset. Now I locate the corresponding row in the master table.
|
| DataSet, new row and default values ? | 03 Dec 2004 11:28 GMT | 7 |
When I add a new row to a DataSet that was filled with info from a database the new row does not get the default values defined in SQL Server, how do I accomplish this seemingly simple task ?
|
| Row-wise vs columnwise | 03 Dec 2004 08:24 GMT | 2 |
If I need to iterate through all the field values in a dataset, is there any preference for organising the outer iterations by row or by column . ie should I do (in VB.Net): For i as integer = 1 to table(0).columns.count
|
| GetChanges false positives, How to avoid? | 03 Dec 2004 08:05 GMT | 1 |
I was curious if anybody know of a way to avoid false positives while using the GetChanges method. In most of my updateable aspx pages I have text/ddl/checkboxes that are populated from the existing data that the user can change, then hit the save/update button. When the
|