Hello,
I create a new DataSet by dragging a SQLite 1.0.60 table from the Server Explorer to the empty DataSet canvas. The T_ID column is set for AutoIncrement=True.
I then right-click on the adapter, click Configure then Advanced. I check the 'refresh the data table' checkbox, OK then Finish. I was expecting code to be generated that would select the new identity column after an insert but no such code was generated. If it matters, visiting the Advanced screen shows the 'refresh the data table' unchecked again.
In using the dataset, I see that the T_ID value on a single new row is not updated after a new row is inserted.
VS2008 Professional and my table is this:
CREATE TABLE
t1
(
T_ID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
LNAME NVARCHAR(50),
FNAME NVARCHAR(50)
);
If my expectations are accurate, I thank you in advance for any suggestions or direction.
Best regards,
Robert