2
votes
4answers
1k views
C# Issue: What is the simplest way for me to load a .MDB file, make changes to it, and save the changes back to the original file?
My project that I am working on is almost finished. I am loading a .MDB file, displaying the contents on a DataGrid and attempting to get those changes on the DataGrid and save them back into the .MDB …
2
votes
8answers
2k views
Is datareader quicker than dataset when populating a datatable?
Which would be quicker.
1) Looping a datareader and creating a custom rows and columns based populated datatable
2) Or creating a dataAdapter object and just (.Fill)ing a datatable.
Does the …
2
votes
2answers
649 views
Define table names for results of multiple SQL selects in a single query
For example if I run the following query:
select * from table1
select * from table2
And run it with a DB adapter (C#) I get a dataset with two tables.
How can I define the names for the result …
1
vote
2answers
26 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?
1
vote
3answers
90 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
50 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
0answers
19 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
10 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
39 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
21 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
43 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
52 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
111 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
27 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
130 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 …
