Ask a Question related to ASP.NET Web Services, Design and Development.
-
Pavel Gusak #1
OleDbAdapter.Update failure
I'm trying to update Access database with data from DataSet in my Web
Service.
Does not work. Generates Concurrency violation error, however, nobody works
with db at the time.
Can you help me?
The code is below.
Thanks.
protected void DataSetUpdate(DataSet ds, string tableName)
{
OleDbDataAdapter adapter;
OleDbCommandBuilder builder;
string selectCommand = "SELECT * FROM " + tableName;
adapter = new OleDbDataAdapter(selectCommand, conn);
builder = new OleDbCommandBuilder(adapter);
adapter.InsertCommand = builder.GetInsertCommand();
adapter.UpdateCommand = builder.GetUpdateCommand();
adapter.DeleteCommand = builder.GetDeleteCommand();
//adapter.ContinueUpdateOnError = true;
adapter.Update(ds, tableName);
adapter.Dispose();
}
Pavel Gusak Guest
-
why is the "Adobe Acrobat 6.0.1 Update" message there at the top? -- the update doesn't work
why is the "Adobe Acrobat 6.0.1 Update" message there there at the top? -- the update doesn't work -
InDesign Color Update Failure
I've come across this problem twice. I don't know what myself or the OS is doing (it may have to do with switching to LAB from CMYK- but that's just... -
Illustrator "Application Launch Failure" after GoLive update.
I installed the GoLive CS 7.0.1 update today, and Illustrator CS no longer works. When attempting to launch Illustrator, I get a panel that says: ... -
1.8.1 failure
Solaris 9 gcc 3.3.1 yaml2byte.c: In function `bytestring_alloc': yaml2byte.c:42: warning: integer constant is too large for "long" type... -
5.0.7 Update Pack 1 requires SCO Update license?
I was just up on SCO's FTP site and noticed they have, as of today, Update Pack 1 and Maintenance Pack 1. I have a question about the Update Pack...



Reply With Quote

