0
votes
2answers
32 views
DataTable Update Problem
Hello,
What is the best method for saving thousands of rows and after doing something, updating them.
Currently, I use a datatable, filling it, when done inserting by
MyDataAda …
0
votes
1answer
41 views
Atomicity of Data Adapter in ADO.NET
Hi,
I am new to ADO.NET and learning it.
I was wondering if Data Adapter in ADO.NET provides atomicity or ACID properties by itself when filling the Data Set and updating the Datab …
0
votes
1answer
86 views
VB.NET Dataset update
I'm new to vb.net and having quite a challenge with updating a field in a table using the For...Next construct on a data set. Sample code below - can anyone tell me what I'm missi …
0
votes
1answer
104 views
Using Data Adapter to save in Access db, c#
Hi All
I have loaded three tables to my application. After the work is done, I want to save it all.
Using 'for each' (is there a better way?), I recreated from my different class o …
0
votes
1answer
24 views
.Net DbDataAdapter has wrong primary key on filled datatable and i want to correct this
Hi all,
.NET/MSSQL Server Question:
I use a System.Data.SqlClient.SqlDataAdapter to connect to a database and read (.Fill) a datatable from a view in the database (select * from …
1
vote
3answers
75 views
FbDataAdapter Update throwing NullReferenceException
When updating a DataTable with 1850-ish new rows to a FbDataAdapter I get a NullReferenceException during execution.
Usually it succeeds in inserting around 1200 records, sometime …
0
votes
2answers
313 views
DataAdapter.Fill() behavior for row deleted at the data source
I'm using the DataSet/DataTable/DataAdapter architecture to mediate between the database and my model objects, which have their own backing (they aren't backed by a DataRow). I've …
0
votes
2answers
229 views
.NET DataSet.HasChanges is incorrectly false
Hi guys,
Has anybody come across ds.hasChanges() being false despite that the ds clearly has the changes while you check it at a breakpoint?
I've been looking at it for quite a wh …
0
votes
1answer
448 views
DataAdapter update method - which connection does it use?
Sorry for the probably stupid question. Since I found nothing about it on the internets, its probably totally obvious and I'm just to blind to see?!
I'm trying to update a table i …
0
votes
1answer
189 views
Is this a bug in DataTable API? Changes are stored/executed in the “wrong sequence”
Edit: any comments whether you think this is a .NET bug or not would be appreciated.
I have a bug which I've managed to simplify to the following scenario:
I have a DataTable whe …
0
votes
3answers
178 views
.NET Data Adapter Timeout SP Issue
We have a SQL Server stored procedure that runs fine in SQL Manager directly, does a rather large calculation but only takes 50-10 seconds max to run.
However when we call this fr …
0
votes
1answer
264 views
SqlDataAdapter.Update doesn’t work
I'm using SqlDataAdapter.Update(DataTable) to throw a table at the database, but the SqlDataAdapter ignores my InsertCommand to write its own, which only sends the primary key and …
0
votes
2answers
661 views
VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column
Hello all,
I have a strongly typed DataTable created with the VS2005/VS2008 DataSet designer.
The table has a Primary Key column that is a guid, which gets populated by SQL serve …
0
votes
2answers
228 views
SQLiteDataAdapter does not fill the specified DataTable
Hello,
I'm attempting to pull some data from a SQLite database so that I can populate a GridView in my GUI: here is the code that returns the DataTable:
DataTable table = new Data …
1
vote
0answers
40 views
Why is the DataAdapter not getting error thrown by trigger
I have a trigger on a view that handles update operations. When I use the MS Management Studio and do an insert I get this error:
Msg 50000, Level 16, State 10, Procedure Trigger_ …
