0
votes
0answers
5 views
Dataadapter update performance - do I need to use datatable.Getchanges?
This is a simple question, but I'm having trouble finding the answer.
I have a large datatable of which I have updated many, but not all rows.
I am using a dataadapter to update …
0
votes
2answers
29 views
Concurrency violation updating a SQL database with a dataadapter
I'm having some trouble updating changes I made to a datatable via a dataadapter. I am getting "Concurrency violation: the UpdateCommand affected 0 of 10 rows"
'Get data
Dim Docs_ …
0
votes
2answers
20 views
SQL Stored Proc and Dataset
Hi,
I've got a sql stored proc that is working fine in SSMS. When I try and execute through code and assign the return to a dataset I am getting zero rows back. I've used the imme …
0
votes
2answers
37 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
49 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
105 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
26 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 …
0
votes
1answer
120 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 …
-1
votes
1answer
48 views
adapter.update
i make the adapter.insert and the adapter.delete and both work good but not with the adapter.delete even i put only on argument here the code
Protected Sub Button2_Click(ByVal sen …
1
vote
3answers
85 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
348 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
3answers
190 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 …
1
vote
0answers
47 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_ …
0
votes
0answers
119 views
DataAdapter Select string from base table schema?
When I built my .xsd, I had to choose the columns for each table, and it made a schema for the tables, right? So how can I get that Select string to use as a base Select command …
0
votes
2answers
252 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 …
