What is GCR_ICDataSet1 and how is this connected to your table?
adam_k
Veteran Poster
1,057 posts since Jun 2011
Reputation Points: 274
Solved Threads: 205
Skill Endorsements: 11
I'm guessing that the GCR_ICDataSet1 is a dataset (as the name suggests), which get's data from an SQLDataAdapter.
What you've done so far is add a record in the "copy" of your actual table which is stored in your dataset (which get's copied when you fill the dataset).
You can actually read/edit/delete the data you've just inserted but only from the dataset.
After you've created the row in the dataset version of the table you need to transfer the changes to your actual table. In order to do so you need to prepare your DataAdapter and ask it to update your table.
You can read all about it here: http://support.microsoft.com/kb/301248
adam_k
Veteran Poster
1,057 posts since Jun 2011
Reputation Points: 274
Solved Threads: 205
Skill Endorsements: 11
Question Answered as of 1 Year Ago by
adam_k