Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Identity columns and read only error
Message
 
To
All
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Title:
Identity columns and read only error
Miscellaneous
Thread ID:
00880168
Message ID:
00880168
Views:
45
When I run the following code against a table with a primary key that is an identity column in SQL Server, I get the error "Column 'pri_key' is Read Only"


DataSet DS = oMyBizObj.GetByID(1);

// Add a DataRow to a table.
DataRow myRow = DS.Tables["MyTable"].NewRow();
myRow["MyColumn1"] = 1;
myRow["MyColumn2"] = "ABC";

// Add the row.
DS.Tables["MyTable"].Rows.Add( myRow );
DS.AcceptChanges();

oMyBizObj.UpdateFromDataSet(DS);


I'm not writing any value to the pri_key column assuming SQL Server will fill it in for me. I've seen help topics and posts concerning retrieving the new value into the data set, but haven't come across this error.

Thanks in advance,
Mike
Next
Reply
Map
View

Click here to load this message in the networking platform