S
Scott Baker
I receive this message when I try to execute a valid delete command against
a dataset for which I have marked a row as Deleted. I have been struggling
with this for a couple of days, and every bit of the documentation say that
it should work.
The sql is generated with an OleDbCommandBuilder object and populated using
the original values of the columns in the row to delete (like this
System.Guid linkToID = (System.Guid) curLinkRow[0]["LinkToID",
DataRowVersion.Original];
..
..
..
objectObjectsAdapter.DeleteCommand.Parameters["@p3"].Value = linkToID;
Anyone found a way around this?
Scott
a dataset for which I have marked a row as Deleted. I have been struggling
with this for a couple of days, and every bit of the documentation say that
it should work.
The sql is generated with an OleDbCommandBuilder object and populated using
the original values of the columns in the row to delete (like this
System.Guid linkToID = (System.Guid) curLinkRow[0]["LinkToID",
DataRowVersion.Original];
..
..
..
objectObjectsAdapter.DeleteCommand.Parameters["@p3"].Value = linkToID;
Anyone found a way around this?
Scott