active questions tagged dataadapter - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:29:17Zhttp://stackoverflow.com/feeds/tag/dataadapterhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1813424/c-update-dataset-without-any-primary-key1C#: Update dataset without any primary keyPartial2009-11-28T19:02:54Z2009-11-28T19:31:37Z
<p>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?</p>
http://stackoverflow.com/questions/1789654/why-i-cant-update-datatable-partially-using-dataadapter-and-dataset0Why I can't update DataTable Partially using DataAdapter and DataSet?RedsDevils2009-11-24T12:06:41Z2009-11-24T12:07:32Z
<p>Hello Everyone ! Please help me with the following set of code:</p>
<pre><code>Dim daTest as New SqlDataAdapter
Dim dsTest as New DataSet
Dim cbTest as SqlCommandBuilder
Dim dRowTest as DataRow
Dim conx as New SqlConnection(conxString)
conx.Open()
daTest.SelectCommand = New SqlCommand("Select * From Table1", conx)
cbTest = New SqlCommandBuilder(daTest)
daTest.FillSchema(dsTest, SchemaType.Source, "Table1")
daTest.Fill(dsTest, "Table1")
daTest.SelectCommand = New SqlCommand("Select * From Table2", conx)
daTest.FillSchema(dsTest, SchemaType.Source, "Table2")
daTest.Fill(dsTest, "Table2")
daTest.SelectCommand = New SqlCommand("Select * From Table3", conx)
daTest.FillSchema(dsTest, SchemaType.Source, "Table3")
daTest.Fill(dsTest, "Table3")
dRowTest = dsTest.Tables("Table1").Rows.Find(Value)
dRowTest.BeginEdit()
dRowTes.Item("FieldName") = 1
dRowTes.EndEdit()
daTest.Update(dsTest,"Table1")
</code></pre>
<p>When I execute that code , it says that "Missing the DataColumn 'Table2.FieldName' in the DataTable 'Table1' for the SourceColumn 'Table2.FieldName' ".</p>
<p>Where I did mistake? Please point me out! or DataAdapter can't update DataTable Partially?</p>
http://stackoverflow.com/questions/1780065/dataadapter-update-performance-do-i-need-to-use-datatable-getchanges0Dataadapter update performance - do I need to use datatable.Getchanges?Brett2009-11-22T21:30:04Z2009-11-22T21:33:59Z
<p>This is a simple question, but I'm having trouble finding the answer.</p>
<p>I have a large datatable of which I have updated many, but not all rows.</p>
<p>I am using a dataadapter to update these changes to SQL server.</p>
<p>Does the dataadapter send update queries only for the updated rows from the datatable, or does it send one for every row, and escentialy tell SQL server to run a pointless update?</p>
<p>I'm wondering which of these two methods would be more appropiate for minimizing the load on the SQL server:</p>
<pre><code>dataadapter.update(datatable)
dataadapter.update(datatable.getChanges(DataRowState.Modified))
</code></pre>
http://stackoverflow.com/questions/1773545/concurrency-violation-updating-a-sql-database-with-a-dataadapter0Concurrency violation updating a SQL database with a dataadapterBrett2009-11-20T22:06:19Z2009-11-21T07:02:01Z
<p>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"</p>
<pre><code>'Get data
Dim Docs_DistributedTable As New DataTable("Docs_Distributed")
Dim sql = "SELECT DISTINCT CompanyID, SortKey, OutputFileID, SequenceNo, DeliveredDate, IsDeliveryCodeCounted, USPS_Scanned FROM Docs_Distributed_Test"
Using sqlCmd As New SqlCommand(sql, conn)
sqlCmd.CommandType = CommandType.Text
Docs_DistributedTable.Load(sqlCmd.ExecuteReader)
End Using
'Make various updates to some records in DataTable.
'Update the Database
Dim sql As String = "UPDATE Docs_Distributed "
sql += "SET DeliveredDate = @DeliveredDate "
sql += "WHERE SequenceNo = @SequenceNo"
Using transaction As SqlTransaction = conn.BeginTransaction("ProcessConfirm")
Try
Using da As New SqlDataAdapter
da.UpdateCommand = conn.CreateCommand()
da.UpdateCommand.Transaction = transaction
da.UpdateCommand.CommandText = sql
da.UpdateCommand.Parameters.Add("@DeliveredDate", SqlDbType.DateTime).SourceColumn = "DeliveredDate"
da.UpdateCommand.Parameters.Add("@SequenceNo", SqlDbType.Int).SourceColumn = "SequenceNo"
da.ContinueUpdateOnError = False
da.Update(Docs_DistributedTable)
End Using
transaction.Commit()
Catch ex As Exception
transaction.Rollback()
End Try
End Using
</code></pre>
<p>Now here's the catch. I am selecting DISTINCT records and essentially getting one row per SequenceNo. There may be many rows with the same SequenceNo, and I am hoping this will update them all. I'm not sure if this is related to my problem or not.</p>
http://stackoverflow.com/questions/1725318/sql-stored-proc-and-dataset0SQL Stored Proc and DatasetMike2009-11-12T20:54:52Z2009-11-12T21:13:35Z
<p>Hi,</p>
<p>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 ensure that I am sending the correct params to the stored proc and that is all good. </p>
<p>What else would cause me to get zero rows assigned to the dataset. Here is my code.</p>
<p>Thanks,
Mike</p>
<p>EDIT: I'm not getting any exceptions from SQL..</p>
<p><code>
Public Function GetTransReporting(ByVal transNumber As Long, ByVal customerID As Long) As DataCommon.transReporting</p>
<pre><code>Dim myTransReporting As New transReporting
Dim da As SqlDataAdapter
Dim prm1 As SqlParameter
Dim prm2 As SqlParameter
mcmd = New SqlCommand
mcmd.CommandType = CommandType.StoredProcedure
mcmd.Connection = mcn
mcmd.CommandText = "GetTransReportingByCustomerID"
prm1 = New SqlParameter("@transNumber", Data.SqlDbType.BigInt)
prm1.Value = customerID
mcmd.Parameters.Add(prm1)
prm2 = New SqlParameter("@customerNumber", Data.SqlDbType.BigInt)
prm2.Value = transNumber
mcmd.Parameters.Add(prm2)
da = New SqlDataAdapter(mcmd)
da.Fill(myTransReporting)
Return myTransReporting
</code></pre>
<p>End Function</p>
<p></code></p>
http://stackoverflow.com/questions/1631530/datatable-update-problem0DataTable Update Problemjcasso2009-10-27T15:18:39Z2009-10-27T18:43:37Z
<p>Hello,</p>
<p>What is the best method for saving thousands of rows and after doing something, updating them.</p>
<p>Currently, I use a datatable, filling it, when done inserting by </p>
<pre><code>MyDataAdapter.Update(MyDataTable)
</code></pre>
<p>After doing some change on MyDataTable, I again use MyDataAdapter.Update(MyDataTable) method.</p>
<p><strong>Edit:</strong></p>
<p>I am sorry for not providing more info.</p>
<p>There may be up to 200.000 rows which will be created from an XML file. There rows will be saved to the database. After than there will be some process for each row. And I will need to update each row in database.</p>
<p>Instead of updating row by row, I decided to update the datatable and using the same dataadapter to update the rows.</p>
<p>This is the best of me.</p>
<p>I think that there may be a smarter approach. </p>
http://stackoverflow.com/questions/1559715/atomicity-of-data-adapter-in-ado-net0Atomicity of Data Adapter in ADO.NETMahesh Velaga2009-10-13T11:45:01Z2009-10-13T12:01:58Z
<p>Hi,
I am new to ADO.NET and learning it.<br/>
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<br/>
or do we have to use transaction explicitly to achieve this.<br/><br/></p>
<p>Lets say, <br/></p>
<ul>
<li>I want to fetch data from the
Database through the Data Adapter to
a Data Set</li>
<li>Send some information to a
website</li>
<li>Make some changes to the data in Data
Set</li>
<li>Update the Database using
DataAdapter.Update(DataSet)</li>
</ul>
<p>I want all the steps (can exclude first step if needed, as it will be a offline data which can be fetched in one go) to be done in one go, atomically, will I need a transaction ?<br/>
If not how to achieve this ?<br/>
Help in this regard would be appreciated.</p>
<p>Thanks,<br/>
Mahesh Velaga.</p>
http://stackoverflow.com/questions/1534567/vb-net-dataset-update0VB.NET Dataset updateDave2009-10-07T22:20:41Z2009-10-07T22:28:38Z
<p>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 particular example could be accomplished with a simple SQL update statement, but the actual use for what this code will become requires stepping through each record in the dataset - the example below is just a simple one to let me get the procedure down. Note that this runs without an exception, but just doesn't change the data in the table.</p>
<p>Help?! :)</p>
<p>TIA!</p>
<p>'<strong>*******************************************************************</strong>
Dim objConn As SqlConnection = New SqlConnection("Data Source=DALLAS\;Initial Catalog=Adaptive;Integrated Security=True")</p>
<pre><code> Dim selectCMD As SqlCommand = New SqlCommand("SELECT * from dwbprocref", objConn)
selectCMD.CommandTimeout = 30
Dim custDA As SqlDataAdapter = New SqlDataAdapter
custDA.SelectCommand = selectCMD
Dim custCB As SqlCommandBuilder = New SqlCommandBuilder(custDA)
custCB.QuotePrefix = "["
custCB.QuoteSuffix = "]"
Dim dRow As DataRow
Dim dTable As DataTable
objConn.Open()
Dim custDS As DataSet = New DataSet
custDA.Fill(custDS, "dwbprocref")
For Each dRow In custDS.Tables(0).Rows
If dRow.Item("pr_format") = "MDV" Then
dRow.Item("pr_tester") = "X"
End If
custDS.AcceptChanges()
Next
custDA.Update(custDS, "dwbprocref")
objConn.Close()
</code></pre>
<p>'<strong>********************************************************************</strong></p>
http://stackoverflow.com/questions/1496608/net-dbdataadapter-has-wrong-primary-key-on-filled-datatable-and-i-want-to-correc0.Net DbDataAdapter has wrong primary key on filled datatable and i want to correct thisunknown (google)2009-09-30T07:38:40Z2009-10-05T18:38:09Z
<p>Hi all,
.NET/MSSQL Server Question:</p>
<p>I use a <strong>System.Data.SqlClient.SqlDataAdapter</strong> to connect to a database and read (.Fill) a datatable from a view in the database (select * from v_coolview).
The problem is that the view consists of multiple tables (of course) and the <strong>resulting DataTable</strong> has typically a <strong>primary key</strong> set (Datatable.PrimaryKey) that consists of the <strong>wrong column(s)</strong>. </p>
<p>As the automatic behaviour/algorithms can not just guess the correct PK for the results of a view, i want to specify it. </p>
<p>How can i do this?</p>
http://stackoverflow.com/questions/1483603/using-data-adapter-to-save-in-access-db-c0Using Data Adapter to save in Access db, c#sadboy2009-09-27T13:48:12Z2009-09-28T09:40:11Z
<p>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 tables.</p>
<p>Now I have the tables, I think I added them to new ds</p>
<pre><code>DataSet ds= new DataSet();
ds.Tables.Add(emp);
ds.Tables.Add(managers);
ds.Tables.Add(empToManagers);
</code></pre>
<p>Did I do it right?</p>
<p>Now my main question: in my db, I have three tables, some of the lines have been changed, deleted or some lines are new. What is the best way to update the db, without checking every line myself? I tried and got lost with the sql. Someone told me I can use adapter, but how?</p>
<p>When I open the data, It is easy to see adapter</p>
<pre><code>public DataSet GetDataSet(string tblName, string sql, DataSet ds)
{
adapter.SelectCommand.CommandText = sql;
adapter.Fill(ds, tblName);
return ds;
}
</code></pre>
<p>tnx</p>
http://stackoverflow.com/questions/742631/adapter-update-1adapter.updatealyelgarhy2009-04-12T23:26:29Z2009-09-03T12:31:20Z
<p>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</p>
<p>Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
usersAdp.Fill(userstable)
usersAdp.Update(txtid.Text, Me.txtname.Text, Me.txtemail.Text, Me.txtpassword.Text, Me.txtconfirm.Text, Me.txtcode.Text, Me.CheckBox1.Checked = True)
Me.GridView1.DataSource = userstable
Me.GridView1.DataBind()
End Sub </p>
http://stackoverflow.com/questions/1333642/fbdataadapter-update-throwing-nullreferenceexception1FbDataAdapter Update throwing NullReferenceExceptionYannick M.2009-08-26T10:07:29Z2009-08-27T12:34:56Z
<p>When updating a DataTable with 1850-ish new rows to a FbDataAdapter I get a NullReferenceException during execution.</p>
<p>Usually it succeeds in inserting around 1200 records, sometimes more, sometimes less...</p>
<p>However when stepping through the code with the debugger, it sometimes inserts the entire recordset, no problem.</p>
<p>I am using the Firebird ADO.NET DataProvider v2.1.</p>
<p>Any ideas? Thanks!</p>
<p>StackTrace:</p>
<pre><code>System.NullReferenceException was unhandled by user code Message="Object reference not set to an instance of an object." Source="FirebirdSql.Data.FirebirdClient" StackTrace:
at FirebirdSql.Data.FirebirdClient.FbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping)
at System.Data.Common.DbDataAdapter.UpdateFromDataTable(DataTable dataTable, DataTableMapping tableMapping)
at System.Data.Common.DbDataAdapter.Update(DataTable dataTable)
at DBTools.MergeDB.DataAccess.DatabaseHelper.UpdateDataTable(Int32 connectionIndex, DataTable dataTable) in C:\Workspaces\DatabaseTools\Releases\Latest\Sources\DBTools\DBTools.MergeDB\DataAccess\DatabaseHelper.cs:line 74
</code></pre>
<p>InnerException:</p>
http://stackoverflow.com/questions/1094682/dataadapter-fill-behavior-for-row-deleted-at-the-data-source0DataAdapter.Fill() behavior for row deleted at the data sourceJohn Calsbeek2009-07-07T20:29:36Z2009-08-14T20:08:39Z
<p>I'm using the <code>DataSet</code>/<code>DataTable</code>/<code>DataAdapter</code> 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 <code>DataAdapter</code> with <code>AcceptChangesDuringFill = False</code>, <code>AcceptChangesDuringUpdate = False</code>, and <code>FillLoadOption = OverwriteChanges</code>. Here's my understanding of the <code>DataAdapter</code> model under these conditions:</p>
<h2>DataAdapter.Update()</h2>
<ul>
<li><code>DataRowState.Added</code> will result in the <code>InsertCommand</code> firing</li>
<li><code>DataRowState.Modified</code> will result in the <code>UpdateCommand</code> firing</li>
<li><code>DataRowState.Deleted</code> will result in the <code>DeleteCommand</code> firing</li>
</ul>
<h2>DataAdapter.Fill()</h2>
<ul>
<li>Any row in the returned result set whose primary key corresponds to an existing row in the <code>DataTable</code> will be used to update that row, and that row's state will always become <code>DataRowState.Modified</code>, <em>even if the returned row is identical to the current row</em></li>
<li>Any row in the returned result set whose primary key doesn't correspond to any existing row will be used to create a new row, and that row's state will become <code>DataRowState.Added</code></li>
<li>Any row in the <code>DataTable</code> that doesn't correspond to a row in the returned result set will stay at <code>DataRowState.Unchanged</code></li>
</ul>
<p>Given that I'm correct with this mental model, suppose I want to use <code>Fill()</code> to notice deleted rows in the data source. Also, suppose that the parameters of the <code>SelectCommand</code> don't return the entire table. I'm guessing that I have two options:</p>
<ul>
<li>Find all the rows that should've been updated by the <code>Fill()</code> but are still <code>DataRowState.Unchanged</code> (relies on my untested italicized assumption above). These rows have been deleted at the data source.</li>
<li>Clear all relevant rows from the <code>DataTable</code> before the <code>Fill()</code>; any row that doesn't show up again has been deleted at the data source. This loses the distinction between <code>DataRowState.Added</code> and <code>DataRowState.Modified</code> that is preserved with the first method.</li>
</ul>
<p>So, my questions:</p>
<ul>
<li>Is my above model of the <code>DataAdapter</code> correct, subject to the property values I noted at the top?</li>
<li>Which option should I go with to find deleted rows? I'd prefer the first one, but that relies on my assumption that all returned rows will be set to <code>DataRowState.Modified</code> even if the row is identical; is that a safe assumption?</li>
<li>Am I going about this all wrong?</li>
</ul>
http://stackoverflow.com/questions/920821/net-data-adapter-timeout-sp-issue0.NET Data Adapter Timeout SP IssueA-B2009-05-28T13:23:35Z2009-08-13T12:00:02Z
<p>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.</p>
<p>However when we call this from the .NET app via a data adapter it times out. The timeout however happens before the timeout period should, we set it to 60 seconds and it still times out in about 20 seconds or less.</p>
<p>I've Googled the issue and seen others note issues where a SP works fien directly but is slow via a data adpater call.</p>
<p>Any ideas on how to resolve this?</p>
http://stackoverflow.com/questions/1214044/why-is-the-dataadapter-not-getting-error-thrown-by-trigger1Why is the DataAdapter not getting error thrown by triggerJames Black2009-07-31T18:14:28Z2009-07-31T18:14:28Z
<p>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:</p>
<pre><code>Msg 50000, Level 16, State 10, Procedure Trigger_TempTableAttr_Lot_UpdateDelete, Line 166
Violation of UNIQUE KEY constraint 'UK_Lot_LotAccountCode'. Cannot insert duplicate key in object 'app.Lot'.
Msg 3616, Level 16, State 1, Line 1
An error was raised during trigger execution. The batch has been aborted and the user transaction, if any, has been rolled back.
</code></pre>
<p>This is what I have in my trigger:</p>
<pre><code>BEGIN TRY
EXEC(@UpdateSQL)
END TRY
BEGIN CATCH
SELECT
@ErrorMessage = ERROR_MESSAGE(),
@ErrorSeverity = ERROR_SEVERITY(),
@ErrorState = ERROR_STATE();
RAISERROR (@ErrorMessage, -- Message text.
16, -- Severity.
10 -- State.
);
RETURN
END CATCH
CREATE TRIGGER[dbo].[Trigger_TempTableAttr_Lot_UpdateDelete] ON [dbo].[TempTableAttr_Lot]
INSTEAD OF UPDATE, INSERT, DELETE
AS
BEGIN
</code></pre>
<p>The error at the beginning of this is never sent to the DataAdapter, it silently fails. I have an event handler on DataAdapter.RowUpdated but there is no error for this operation. No error is caught for INSERT or DELETE either.</p>
<p>What may be going on to prevent me from having an error received in the application?</p>
http://stackoverflow.com/questions/726267/dataadapter-select-string-from-base-table-schema0DataAdapter Select string from base table schema?MattSlay2009-04-07T15:13:06Z2009-07-30T18:41:28Z
<p>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 for new instances of dataadapters, and then just append a Where and OrderBy clause to it as needed?</p>
<p>That would keep me from having to keep each DataAdapter's field list (for the same table) in synch with the schema of that table in the .xsd file. </p>
<p>Isn't it common to have several DataAdapters that work on a certain table schema, but with different params in the Where and OrderBy clauses? Surely one does not have to maintain (or even redundently build) the field list part of the Select strings for half a dozen DataAdapters that all work off of the same table schema.</p>
<p>I'm envisioning something like this pseudo code:</p>
<pre><code>BaseSelectString = MyTypedDataSet.JobsTable.GetSelectStringFromSchema() // Is there such a method or technique?
WhereClause = " Where SomeField = @Param1 and SomeOtherField = @Param2"
OrderByClause = " Order By Field1, Field2"
SelectString=BaseSelectString + WhereClause + OrderByClause
OleDbDataAdapter adapter = new OleDbDataAdapter(SelectString, MyConn)
</code></pre>
http://stackoverflow.com/questions/1165477/net-dataset-haschanges-is-incorrectly-false0.NET DataSet.HasChanges is incorrectly falseG Berdal2009-07-22T13:58:45Z2009-07-22T14:31:32Z
<p>Hi guys,</p>
<p>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 what is wrong...</p>
<pre><code>// connectionstring and command has been set
DataSet ds = new DataSet();
BindingSource myBindingSource = new BindingSource();
SqlDataAdapter dataAdapter1 = new SqlDataAdapter();
dataAdapter1.Fill(ds, "Data");
myBindingSource.DataSource = ds.Tables["Data"];
// then changes made to the datatable on a windows form using bindingnavigator
ds.HasChanges(DataRowState.Modified); // is false
</code></pre>
<p>Now when I set a breakpoint after the row with HasChanges and use DataSet Visualizer I can see that the DataSet has in fact changed, but HasChanges still returns false.</p>
<p>I'm sure I'm missing the obvious... can anybody see what I'm doing wrong?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1037944/dataadapter-update-method-which-connection-does-it-use0DataAdapter update method - which connection does it use?MAD92009-06-24T12:05:00Z2009-06-24T12:20:08Z
<p>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?!</p>
<p>I'm trying to update a table in a database from a dataset via DataAdapter.Update(dataset)</p>
<p>But there is no possiblity to set the connection, the DA should use.</p>
<p>Where does the DA know how to connect to the DB? Or do I misunderstand the concept of the dataadapter?</p>
<p>my current code is like:</p>
<pre><code>protected DataSet UpdateDataSet(DataSet ds)
{
DataSet dsChanges = new DataSet();
SqlDataAdapter da = new SqlDataAdapter();
dsChanges = ds.GetChanges();
//Update DataSet
da.Update(dsChanges);
ds.Merge(dsChanges);
return ds;
}
</code></pre>
<p>I just wrote this and became suspicious how (or if) it works... I havent tested it so far, since I gotta write some other code before I can test it properly</p>
<p>Thank you ppl, StackOVerflow FTW!</p>
http://stackoverflow.com/questions/1027095/is-this-a-bug-in-datatable-api-changes-are-stored-executed-in-the-wrong-sequen0Is this a bug in DataTable API? Changes are stored/executed in the "wrong sequence"Rick2009-06-22T13:01:23Z2009-06-23T08:47:17Z
<p>Edit: any comments whether you think this is a .NET bug or not would be appreciated.</p>
<p>I have a bug which I've managed to simplify to the following scenario:</p>
<p>I have a DataTable where the primary keys must be kept consecutive, e.g. if you insert a row between other rows, you must first increment the ID of the succeeding rows to make space, and then insert the row.</p>
<p>And if you delete a row, you must decrement the ID of any succeeding rows to fill the gap left by the row in the table.</p>
<p><strong>Test case that works correctly</strong></p>
<p>Start with 3 rows in the table, with IDs 1, 2 and 3.</p>
<p>Then delete ID=2, and set ID=2 where ID=3 (to fill the gap); this works correctly. The dataTable.GetChanges() contains the deleted row, and then the modified row; when you run dataAdapter.Update(table) it executes fine.</p>
<p><strong>Test case that does not work</strong></p>
<p>However, if you start with 2 rows (IDs 1 and 2), then set ID=3 where ID=2, and insert ID=2, then commit (or accept) changes. This should be now be the same state as the first test.</p>
<p>Then you do the same steps as before, i.e. delete ID=2 and set ID=2 where ID=3, but now the dataTable.GetChanges() are in the wrong order. The first row is a modified row, and the second row is the deleted row. Then if you try dataAdapter.Update(table) it will give a primary key violation - it tried to modify a row to an already existing row before it deletes.</p>
<p><strong>Workaround</strong></p>
<p>I can think of a workaround to the problem, i.e. force it so that deleted rows are committed first, and then modified rows, and then added rows. But why is this happening? Is there another solution?</p>
<p>I think I have seen a similar "problem" before with dictionaries, that if you add some items, delete then, re-insert them, then they will not be in the same sequence that you added them (when you enumerate the dictionary).</p>
<p><strong>Here are two NUnit tests which show the problem:</strong></p>
<pre><code>[Test]
public void GetChanges_Working()
{
// Setup ID table with three rows, ID=1, ID=2, ID=3
DataTable idTable = new DataTable();
idTable.Columns.Add("ID", typeof(int));
idTable.PrimaryKey = new DataColumn[] { idTable.Columns["ID"] };
idTable.Rows.Add(1);
idTable.Rows.Add(2);
idTable.Rows.Add(3);
idTable.AcceptChanges();
// Delete ID=2, and move old ID=3 to ID=2
idTable.Select("ID = 2")[0].Delete();
idTable.Select("ID = 3")[0]["ID"] = 2;
// Debug GetChanges
foreach (DataRow row in idTable.GetChanges().Rows)
{
if (row.RowState == DataRowState.Deleted)
Console.WriteLine("Deleted: {0}", row["ID", DataRowVersion.Original]);
else
Console.WriteLine("Modified: {0} = {1}", row["ID", DataRowVersion.Original], row["ID", DataRowVersion.Current]);
}
// Check GetChanges
Assert.AreEqual(DataRowState.Deleted, idTable.GetChanges().Rows[0].RowState, "1st row in GetChanges should be deleted row");
Assert.AreEqual(DataRowState.Modified, idTable.GetChanges().Rows[1].RowState, "2nd row in GetChanges should be modified row");
}
</code></pre>
<p>Output:</p>
<pre><code>Deleted: 2
Modified: 3 = 2
1 passed, 0 failed, 0 skipped, took 4.27 seconds (NUnit 2.4).
</code></pre>
<p>Next test:</p>
<pre><code>[Test]
public void GetChanges_NotWorking()
{
// Setup ID table with two rows, ID=1, ID=2
DataTable idTable = new DataTable();
idTable.Columns.Add("ID", typeof(int));
idTable.PrimaryKey = new DataColumn[] { idTable.Columns["ID"] };
idTable.Rows.Add(1);
idTable.Rows.Add(2);
idTable.AcceptChanges();
// Move old ID=2 to ID=3, and add ID=2
idTable.Select("ID = 2")[0]["ID"] = 3;
idTable.Rows.Add(2);
idTable.AcceptChanges();
// Delete ID=2, and move old ID=3 to ID=2
idTable.Select("ID = 2")[0].Delete();
idTable.Select("ID = 3")[0]["ID"] = 2;
// Debug GetChanges
foreach (DataRow row in idTable.GetChanges().Rows)
{
if (row.RowState == DataRowState.Deleted)
Console.WriteLine("Deleted: {0}", row["ID", DataRowVersion.Original]);
else
Console.WriteLine("Modified: {0} = {1}", row["ID", DataRowVersion.Original], row["ID", DataRowVersion.Current]);
}
// Check GetChanges
Assert.AreEqual(DataRowState.Deleted, idTable.GetChanges().Rows[0].RowState, "1st row in GetChanges should be deleted row");
Assert.AreEqual(DataRowState.Modified, idTable.GetChanges().Rows[1].RowState, "2nd row in GetChanges should be modified row");
}
</code></pre>
<p>Output:</p>
<pre><code>Modified: 3 = 2
Deleted: 2
TestCase 'GetChanges_NotWorking'
failed:
1st row in GetChanges should be deleted row
Expected: Deleted
But was: Modified
</code></pre>
http://stackoverflow.com/questions/832874/sqldataadapter-update-doesnt-work0SqlDataAdapter.Update doesn't workMerus2009-05-07T04:24:11Z2009-06-08T14:00:03Z
<p>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 all the rows that can be null if they want. How do I get it to behave?</p>
<p>I step through the code before and after I call Update(). Before, it's my InsertCommand. After, it's the SqlDataAdapter's.</p>
<p>Edit: I don't especially want to post code samples because I can take the row I have and write my own SqlCommand object that works easily enough. I'm more interested in reasons why Update would decide that the InsertCommand I pass it isn't good enough so I can go digging through my own code -- this whole thing was supposed to be a timesaver.</p>
http://stackoverflow.com/questions/899892/sqlitedataadapter-does-not-fill-the-specified-datatable0SQLiteDataAdapter does not fill the specified DataTablesweeney2009-05-22T20:38:26Z2009-05-22T20:57:44Z
<p>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:</p>
<pre><code>DataTable table = new DataTable();
SQLiteDataAdapter adapter = new SQLiteDataAdapter(this.command.CommandText, this.connection);
adapter.Fill(table);
return table;
</code></pre>
<p>For some reason after calling <code>adapter.Fill</code>, the DataTable is still not populated with anything. So far I've verified that the command text is correct and that the connection contains the correct connection string. Both are used successfully in other parts of the application. No exceptions seem to be thrown... Is there any place else I should be looking for trouble? Am I using the API incorrectly?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/806590/vs2005-vs2008-dataset-designer-insert-a-row-into-a-table-that-has-an-autogenerat0VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid columnDoctaJonez2009-04-30T12:09:18Z2009-05-02T18:19:36Z
<p>Hello all,</p>
<p>I have a strongly typed DataTable created with the VS2005/VS2008 DataSet designer.</p>
<p>The table has a Primary Key column that is a guid, which gets populated by SQL server. The problem is when I want add a row (or multiple rows) to my DataTable and then call the <a href="http://msdn.microsoft.com/en-us/library/z1z2bkx2.aspx" rel="nofollow">DataAdapter.Update</a> method (passing in the DataTable). When <a href="http://msdn.microsoft.com/en-us/library/z1z2bkx2.aspx" rel="nofollow">DataAdapter.Update</a> is called I get a SQL exception saying that I cannot insert NULL into the primary key column.</p>
<p>How do I tell the designer that this is an autogenerated column and I do not want to provide a value for new rows? I just want the value generated by SQL.</p>
<p>Am I missing something here, or is this a limitation of the DataSet designer?</p>
<p>I know how achieve this using LINQ to SQL, but unfortunatley I do not have it at my disposal for this project.</p>
http://stackoverflow.com/questions/769128/sqldataadapter-fill-timeout-underlying-sproc-returns-quickly0SqlDataAdapter.Fill() Timeout - Underlying Sproc Returns QuicklyChris2009-04-20T16:47:57Z2009-04-22T19:03:47Z
<p>Hello, I have a SqlDataAdapter that is being populated with 21 rows of data (4 columns). The sproc that drives it returns in a couple seconds in SQL Mgmt Studio, but the .Fill() takes 5 minutes.</p>
<pre><code> ArrayList ret = new ArrayList();
SqlDataAdapter da = null;
SqlCommand cmd = null;
cmd = base.GetStoredProc("usp_dsp_Stuff"); //Returns immediately in MSSMS.
cmd.CommandTimeout = 3600; // Set to 6 min - debug only
base.AddParameter(ref cmd, "@Param1", ParameterDirection.Input, SqlDbType.BigInt, 8, 19, 0, theParam1);
base.AddParameter(ref cmd, "@Param2", ParameterDirection.Input, SqlDbType.BigInt, 8, 19, 0, theParam2);
base.AddParameter(ref cmd, "@Param3", ParameterDirection.Input, SqlDbType.Char, 1, 'C');
da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt); //Takes 5 minutes.
</code></pre>
<p>Any ideas?</p>
<p>Thanks in advance!
-Chris</p>
http://stackoverflow.com/questions/745993/what-to-look-for-when-setting-updatebatchsize0What to look for when setting UpdateBatchSizehacker2009-04-14T01:21:30Z2009-04-14T01:26:25Z
<p>I have a .NET application that is merging two datatables with a lot of rows (10,000+). There is a good chance of having a large number of update/inserts to perform to the SQL table when using the DataAdapter.Update command.</p>
<p>Right now, I have the Adapter UpdateBatchSize property set to 200. VS warns against setting this value too high because it may decrease performance. Ok, gotcha. </p>
<p>Performance wise, what should I look for when setting this property? No matter what, updating lots of rows will take a bunch of time. Running it on my machine (or on the DB server) doesn't -seem- to take that much time, but I am sure when the system is loaded down doing other items, this may be an issue. </p>
<p>Is there something I can look for in the Profiler? Doing a standard profiling, the Duration is usually 0. Sometimes is hits 1 or 2 (maybe 20 times overall) and out of about 20,000 updates, 3-4 hit 20. CPU is at 0 except for the a couple that hit 1-2. There are 2 records that go up to around 10. Reads are always 2 and Writes are always 0.</p>
http://stackoverflow.com/questions/741969/something-wrong-with-my-gridview-code0Something wrong with my GridView code...alyelgarhy2009-04-12T16:02:55Z2009-04-13T06:25:30Z
<p>this code never fills the grid view I know that somthing is wrong here the code</p>
<pre><code>Imports System.Data
Imports ZidduDataSetTableAdapters
Partial Class _Default
Inherits System.Web.UI.Page
Dim filesAdp As New FilesTableAdapter
Dim filestable As New ZidduDataSet.FilesDataTable
Protected Sub btnfill_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnfill.Click
Me.GridView1.DataSource = filesAdp.GetData
Me.GridView1.DataBind()
End Sub
End Class
</code></pre>
<p>and I already created the dataset with wizard called ZidduDataSet.xsd
and the adapter name is FilesTableAdapter </p>
<p>can any one help?</p>
http://stackoverflow.com/questions/711129/dataadapters-against-typed-datasets-sql-schema-nightmares0DataAdapters against Typed DataSets = SQL Schema nightmares...MattSlay2009-04-02T18:58:10Z2009-04-02T19:53:21Z
<p>I have seen many references stating that TableAdapters are weak and silly, and that any real dev would use DataAdapters. I don't know if that is true or not, but I am exploring the matter, and stressing out over how bad this whole 'DataAdapter/TableAdapter against a Typed DataSets' smells.</p>
<p>Let me try to explain...</p>
<p>Suppose I have my Typed DataSet defind in the xsd file, and now I'm ready to create a DataAdapter in code, against that schema...(By the way, I am using OleDb to access free-standing .dbf files in a folder... No SQL server stored procedures to call here, just plain old raw tables, ready for action.)</p>
<p>From my studies so far, here is how I see the DataAdapter used in conjunction with a Typed DataSet. Tell me if I am wrong. (Then I have my big complaint / question at the end.)</p>
<pre><code>public DataTable GetJobsByCustomer(string CustNo)
{
OleDbConnection conn1 = new OleDbConnection(dbConnectionString);
conn1.Open();
LMVFP ds1 = new LMVFP(); //My Typed DataSet
string sqlstring = @"SELECT act_compda, contact, cust_num, est_cost, invoiced, job_hours,
job_invnum, job_num, job_remark, job_start, mach_cost, mat_cost, mat_mkup,
p_o_num, priority, quote_no, quoted_by, ship_date, ship_info, shop_notes, status, total_cost
FROM job_info
WHERE (cust_num = ?) AND (status = 'A')
ORDER BY priority";
OleDbDataAdapter JobsAdapter = new OleDbDataAdapter(sqlstring,conn1);
JobsAdapter.SelectCommand.Parameters.Add("?", OleDbType.VarChar,6).Value=CustNo;
JobsAdapter.Fill(ds1, "Jobs"); // A table schema in the Typed DataSet
return ds1.Jobs;
}
</code></pre>
<p>Is that how it goes? It does work, so that's good. And indeed the strongly typed behavior is great.</p>
<p>Now, my gripe.... You mean to tell me that I've got maintain the same exaxt SQL syntax in my DAL method (GetJobsByCustomer) to match the schema of the table in the xsd? It's crazy to have so much maintenance and dis-join between my hand-coded SQL and the xsd schema. There's no error cathing at all, since you are writing a text string!! You get to find out at run time if it will work.</p>
<p>When your typing all the SQL in code, it's terrible to have to look back and forth to keep your coded SQL in synch with the xsd table schema.</p>
<p>Surely I am missing something.</p>
<p>What a farse. The typed dataset works with beatiful intellisense and all, because it's generated from the schema, but when it comes down to it, it's just a pain to may to write SQL that matches the Typed schema. All they've done is move the headache to a new area.</p>
<p>Please tell me I am missing sometehing here that will make this much better.</p>
http://stackoverflow.com/questions/518239/c-issue-what-is-the-simplest-way-for-me-to-load-a-mdb-file-make-changes-to-it2C# 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?OneShot2009-02-05T22:19:34Z2009-02-06T21:46:34Z
<p>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 file. I am also going to create a function that allows me to take the tables from one .MDB file and save it to another .MDB file. Of course, I cannot do any of this if I cannot figure out how to save the changes back to the .MDB file.</p>
<p>I have researched Google extensively and there are no answers to my question. I consider myself a beginner at this specific topic so please don't make the answers too complicated -- I need the simplest way to edit a .MDB file! Please provide programming examples.</p>
<ol>
<li>Assume that I've already made a connection to a DataGrid. How do I get the changes made by the Datagrid? Im sure this one is simple enough to answer.</li>
<li>I then need to know how to take this Datatable, insert it into Dataset it came from then take that Dataset and rewrite the .MDB file. (If there is a way of only inserting the tables that were changed I would prefer that.)</li>
</ol>
<p>Thank you in advance, let me know if you need more information. This is the last thing I am probably going to have to ask about this topic...thank god.</p>
<p><strong>EDIT:</strong></p>
<p>The .mdb I am working with is a <strong>Microsoft Access Database.</strong> ( I didnt even know there were multiple .mdb files)</p>
<p>I know I cannot write directly to the .MDB file via a streamwriter or anything but is there a way I can possibly generated a .MDB File with the DataSet information already in it? OR is there just a way that I can add tables to a .MDB file that i've already loaded into the DataGrid. There HAS to be a way!</p>
<p>Again, I need a way to do this <strong><em>PROGRAMMATICALLY</em></strong> in C#.</p>
<p><strong>EDIT:</strong></p>
<p>Okay, my project is fairly large but I use a seperate class file to handle all Database connections. I know my design and source is really sloppy, but it gets the job done. I am only as good as the examples I find on the internet.</p>
<p>Remember, I am simply connecting to a DataGrid in another form. Let me know if you want my code from the Datagrid form (I dont know why you would need it though). DatabaseHandling.cs handles 2 .MDB files. So you will see two datasets in there. I will use this eventually to take tables from one Dataset and put them into another Dataset. I just need to figure out how to save these values BACK into a .MDB file.</p>
<p>Is there anyway to do this? There has to be a way...</p>
<p><strong>EDIT:</strong></p>
<p>From what i've researched and read...I think the answer is right under my nose. Using the "Update()" command. Now while this is re-assuring that there is infact a simple way of doing this, I am still left with the problem that I have no-friggin-clue how to use this update command. </p>
<p>Perhaps I can set it up like this:</p>
<pre><code>Oledb.OledbConnection cn = new Oledb.OledbConnection();
cn.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Staff.mdb";
Oledb.OledbCommand cmd = new Oledb.OledbCommand(cn);
cmd.CommandText = "INSERT INTO Customers (FirstName, LastName) VALUES (@FirstName, @LastName)";
</code></pre>
<p>I think that may do it, but I dont want to manually insert anything. I want to do both of these instead:</p>
<ul>
<li>Take information that is changed on the Datagrid and update the Access Database File (.mdb) that I got it from</li>
<li>Create a function that allows me to take tables from another Access Database File (.mdb) and replace them in a secondary Access Database file (.mdb). Both files will use the exact same structure but will have different information in them.</li>
</ul>
<p>I hope someone comes up with a answer for this...my project is done all that awaits is one simple answer.</p>
<p>Thank you again in advance.</p>
<p><strong>EDIT:</strong></p>
<p>Okay...good news. I have figured out how to query the .mdb file itself (I think). Here is the code, which doesn't work because I get a runtime error due to the sql command i'm attempting to use. Which will bring me to my next question.</p>
<p><strong>New function code added to DatabaseHandling.cs:</strong></p>
<pre><code>static public void performSynchronization(string table, string tableTwoLocation)
{
OleDbCommand cmdCopyTables = new OleDbCommand("INSERT INTO" + table + "SELECT * FROM [MS Access;" + tableTwoLocation + ";].[" + table + "]"); // This query generates runtime error
cmdCopyTables.Connection = dataconnectionA;
dataconnectionA.Open();
cmdCopyTables.ExecuteNonQuery();
dataconnectionA.Close();
}
</code></pre>
<p>As you can see, I've actually managed to execute a query on the connection itself, which I believe to be the actual Access .MDB file. As I said though, the SQL query I've executed on the file doesn't work and generated a run-time error when used.</p>
<p>The command I am attempting to execute is supposed to take a table from a .MDB file and overwrite a table of the same type of a different .MDB file. The SQL command I attempted above tried to directly take a table from a .mdb file, and directly put it in another -- this isn't what I want to do. I want to take all the information from the .MDB file -- put the tables into a Datatable and then add all the Datatables to a Dataset (which i've done.) I want to do this for two .MDB files. Once I have two Datasets I want to take specific tables out of each Dataset and add them to each file like this:</p>
<ul>
<li>DataSetA >>>>----- [Add Tables
(Overwrite Them)] ----->>>> DataSetB</li>
<li>DataSetB >>>>----- [Add Tables
(Overwrite Them)] ----->>>> DataSetA</li>
</ul>
<p>I want to take those each those Datasets and then put them BACK into each Access .MDB file they came from. Essentially keeping both databases synchronized.</p>
<p>So my questions, revised, is:</p>
<ol>
<li>How do I create a SQL query that will add a table to the .MDB file by overwriting the existing one of the same name. The query should be able to be created dynamically during runtime with an array that replaces a variable with the table name I want to add.</li>
<li>How do I get the changes that were made by the Datagrid to the DataTable and put them back into a DataTable (or DataSet) so I can send them to the .MDB file?</li>
</ol>
<p>I've tried to elaborate as much as possible...because I believe I am not explaing my issue very well. Now this question has grown wayyy too long. I just wish I could explain this better. :[</p>
<p><strong>EDIT:</strong></p>
<p>Thanks to a user below I think I've almost found a fix -- the keyword <em>almost</em>.
Here is my updated DatabaseHandling.cs code below. I get a runtime error "Datatype Mismatch." I dont know how that could be possible considering I am trying to copy these tables into another database with the exact same setup.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Data;
using System.IO;
namespace LCR_ShepherdStaffupdater_1._0
{
public class DatabaseHandling
{
static DataTable datatableB = new DataTable();
static DataTable datatableA = new DataTable();
public static DataSet datasetA = new DataSet();
public static DataSet datasetB = new DataSet();
static OleDbDataAdapter adapterA = new OleDbDataAdapter();
static OleDbDataAdapter adapterB = new OleDbDataAdapter();
static string connectionstringA = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Settings.getfilelocationA();
static string connectionstringB = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Settings.getfilelocationB();
static OleDbConnection dataconnectionB = new OleDbConnection(connectionstringB);
static OleDbConnection dataconnectionA = new OleDbConnection(connectionstringA);
static DataTable tableListA;
static DataTable tableListB;
static public void addTableA(string table, bool addtoDataSet)
{
dataconnectionA.Open();
datatableA = new DataTable(table);
try
{
OleDbCommand commandselectA = new OleDbCommand("SELECT * FROM [" + table + "]", dataconnectionA);
adapterA.SelectCommand = commandselectA;
adapterA.Fill(datatableA);
}
catch
{
Logging.updateLog("Error: Tried to get " + table + " from DataSetA. Table doesn't exist!");
}
if (addtoDataSet == true)
{
datasetA.Tables.Add(datatableA);
Logging.updateLog("Added DataTableA: " + datatableA.TableName.ToString() + " Successfully!");
}
dataconnectionA.Close();
}
static public void addTableB(string table, bool addtoDataSet)
{
dataconnectionB.Open();
datatableB = new DataTable(table);
try
{
OleDbCommand commandselectB = new OleDbCommand("SELECT * FROM [" + table + "]", dataconnectionB);
adapterB.SelectCommand = commandselectB;
adapterB.Fill(datatableB);
}
catch
{
Logging.updateLog("Error: Tried to get " + table + " from DataSetB. Table doesn't exist!");
}
if (addtoDataSet == true)
{
datasetB.Tables.Add(datatableB);
Logging.updateLog("Added DataTableB: " + datatableB.TableName.ToString() + " Successfully!");
}
dataconnectionB.Close();
}
static public string[] getTablesA(string connectionString)
{
dataconnectionA.Open();
tableListA = dataconnectionA.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new Object[] { null, null, null, "TABLE" });
string[] stringTableListA = new string[tableListA.Rows.Count];
for (int i = 0; i < tableListA.Rows.Count; i++)
{
stringTableListA[i] = tableListA.Rows[i].ItemArray[2].ToString();
}
dataconnectionA.Close();
return stringTableListA;
}
static public string[] getTablesB(string connectionString)
{
dataconnectionB.Open();
tableListB = dataconnectionB.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new Object[] { null, null, null, "TABLE" });
string[] stringTableListB = new string[tableListB.Rows.Count];
for (int i = 0; i < tableListB.Rows.Count; i++)
{
stringTableListB[i] = tableListB.Rows[i].ItemArray[2].ToString();
}
dataconnectionB.Close();
return stringTableListB;
}
static public void createDataSet()
{
string[] tempA = getTablesA(connectionstringA);
string[] tempB = getTablesB(connectionstringB);
int percentage = 0;
int maximum = (tempA.Length + tempB.Length);
Logging.updateNotice("Loading Tables...");
for (int i = 0; i < tempA.Length ; i++)
{
if (!datasetA.Tables.Contains(tempA[i]))
{
addTableA(tempA[i], true);
percentage++;
Logging.loadStatus(percentage, maximum);
}
else
{
datasetA.Tables.Remove(tempA[i]);
addTableA(tempA[i], true);
percentage++;
Logging.loadStatus(percentage, maximum);
}
}
for (int i = 0; i < tempB.Length ; i++)
{
if (!datasetB.Tables.Contains(tempB[i]))
{
addTableB(tempB[i], true);
percentage++;
Logging.loadStatus(percentage, maximum);
}
else
{
datasetB.Tables.Remove(tempB[i]);
addTableB(tempB[i], true);
percentage++;
Logging.loadStatus(percentage, maximum);
}
}
}
static public DataTable getDataTableA()
{
datatableA = datasetA.Tables[Settings.textA];
return datatableA;
}
static public DataTable getDataTableB()
{
datatableB = datasetB.Tables[Settings.textB];
return datatableB;
}
static public DataSet getDataSetA()
{
return datasetA;
}
static public DataSet getDataSetB()
{
return datasetB;
}
static public void InitiateCopyProcessA()
{
DataSet tablesA;
tablesA = DatabaseHandling.getDataSetA();
foreach (DataTable table in tablesA.Tables)
{
CopyTable(table, connectionstringB);
}
}
public static void CopyTable(DataTable table, string connectionStringB)
{
var connectionB = new OleDbConnection(connectionStringB);
foreach (DataRow row in table.Rows)
{
InsertRow(row, table.Columns, table.TableName, connectionB);
}
}
public static void InsertRow(DataRow row, DataColumnCollection columns, string table, OleDbConnection connection)
{
var columnNames = new List<string>();
var values = new List<string>();
for (int i = 0; i < columns.Count; i++)
{
columnNames.Add("[" + columns[i].ColumnName + "]");
values.Add("'" + row[i].ToString().Replace("'", "''") + "'");
}
string sql = string.Format("INSERT INTO {0} ({1}) VALUES ({2})",
table,
string.Join(", ", columnNames.ToArray()),
string.Join(", ", values.ToArray())
);
ExecuteNonQuery(sql, connection);
}
public static void ExecuteNonQuery(string sql, OleDbConnection conn)
{
if (conn == null)
throw new ArgumentNullException("conn");
ConnectionState prevState = ConnectionState.Closed;
var command = new OleDbCommand(sql, conn);
try
{
prevState = conn.State;
if (prevState != ConnectionState.Open)
conn.Open();
command.ExecuteNonQuery(); // !!! Runtime-Error: Data type mismatch in criteria expression. !!!
}
finally
{
if (conn.State != ConnectionState.Closed
&& prevState != ConnectionState.Open)
conn.Close();
}
}
}
}
</code></pre>
<p>Why am I getting this error? Both tables are exactly the same. What am I doing wrong?
Worst case, how do I delete the table in the other Access .MDB file before inserting the exact same structure table with different values in it?</p>
<p>Man I wish I could just figure this out...</p>
<p><strong>EDIT:</strong></p>
<p>Okay, I've come some distance. My question has morphed into a new one, and thus deserves being asked seperately. I have had my question answered as now I know how to execute queries directly to the connection that I have opened. Thank you all!</p>
http://stackoverflow.com/questions/482271/is-dataadapter-use-facade-pattern-or-adapter-pattern0Is DataAdapter use facade pattern or Adapter pattern.Krirk2009-01-27T03:48:46Z2009-01-27T05:14:27Z
<p>When i see Update(),Fill() method of DataAdapter object I always think Is DataAdapter use facade pattern ?<br></p>
<p>It looks like behind the scenes It will create Command object, Connection object and execute it for us.</p>
<p>Or DataAdapter use Adapter pattern because it is adapter between Dataset and Comamand object ,Connection object ?</p>
http://stackoverflow.com/questions/278518/using-dataadapter-update-to-insert-upd-rows-in-dataset-not-based-on-dbs-pk-pro0Using DataAdapter .Update to insert/upd rows in dataset (not based on DBs PK) problemWIDBA2008-11-10T17:13:04Z2009-01-18T08:14:30Z
<p>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. </p>
<p>At this point I have two Datasets that are structurally identical (from a table/column layout perspective). I then have a process that adds any row that exists in source to the destination dataset. In addition, the process will attempt to update certain columns based on the common key as well. </p>
<p>The problem seems to come in when the DataAdapter.UPDATE command is called with existing rows that it needs to update.
Error:
System.InvalidOperationException was unhandled
Message="The table specified in the SELECT statement does not contain a unique key or identifier column, or the SELECT statement does not include all of the key columns."</p>
<p>Since I have no way of controlling what the PK is on the destination DB, is there a way to tell the Adapter what the key is for this particular update? I have "custom" set the primary keys for each DataTable in the Dataset.</p>
<p>This is a non user interfacing batch process and its perf requirements are quite low. (to explain the use of datasets, etc)</p>
<p>Any Thoughts?</p>
http://stackoverflow.com/questions/310680/batch-updates-using-dataadapter0Batch Updates using DataAdapterdviljoen2008-11-22T01:17:25Z2008-12-11T07:25:03Z
<p>I have a situation where I have a bunch of SQL Update commands that all need to be executed. I know that DataSets can do batch updates, but the only way I've been able to accomplish it is to load the whole table into a dataset first. What if I want to only update a subset of the records in a table?</p>