0
votes
3answers
2k views
Using DataAdapter .Update to insert/upd rows in dataset (not based on DBs PK) problem
I have a batch process that reads data from multiple tables into a dataset based on a common key. I then build a second dataset of the destination data querying on the same key.
At this point I …
0
votes
0answers
15 views
How can I add multiple tables to dataset with Fill using IDataAdapter?
Hi, short question:
Refering to http://stackoverflow.com/questions/170455/how-can-i-read-multiple-tables-into-a-dataset#answer-366402
My App has a db factory. Can i use 'da.Fill(ds)' [with …
1
vote
2answers
37 views
C#: Update dataset without any primary key
Is it possible in C# to use an OleDbAdapter and use its Update method for a dataset when a table has no primary key and how can I do this?
0
votes
0answers
29 views
Why I can’t update DataTable Partially using DataAdapter and DataSet?
Hello Everyone ! Please help me with the following set of code:
Dim daTest as New SqlDataAdapter
Dim dsTest as New DataSet
Dim cbTest as SqlCommandBuilder
Dim dRowTest as DataRow
Dim conx as New …
0
votes
0answers
17 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 these changes to SQL …
0
votes
2answers
54 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_DistributedTable As …
0
votes
2answers
24 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 immediate window to …
0
votes
2answers
52 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
…
0
votes
1answer
56 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 Database
or do we have to …
0
votes
1answer
115 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 missing? I know this …
0
votes
1answer
28 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 v_coolview).
The …
0
votes
1answer
140 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 objects three data …
-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 sender As Object, ByVal …
1
vote
3answers
100 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, sometimes more, sometimes …
0
votes
2answers
374 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 got a DataAdapter …
