0
votes
0answers
17 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
39 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
30 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
18 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
57 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
53 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
29 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
142 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
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 …
1
vote
0answers
51 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 …
0
votes
2answers
309 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 while and I can't see …
0
votes
2answers
376 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 …
