Tagged Questions

4
votes
3answers
10k views

Getting autonumber primary key from MS SQL Server

I am currently working in C#, and I need to insert a new record into one table, get the new primary key value, and then use that as a foreign key reference in inserting several more records. The ...
0
votes
2answers
130 views

get autoNumber value from database

The code is below. in my code I updating existing row(from existing table) that the program get all the updated values from textBoxes. there is at the end(the last column)of the table autoNumber field ...
0
votes
1answer
145 views

Autonumber and datatable with dbnull exception

i was doing some work on a datatable i filled with a oledbdataadapter made from an access database. and i stumbled upon this error: Turns out that my table has this structure: ID --> autonumber(PK) ...
0
votes
0answers
239 views

Concurrency violation: the UpdateCommand affected 0 of the expected 1 records with autonumber fields

I am writing a small C# society membership app using Visual Studio 2008, and the new data layer with .Net 3.5, along with SQLite. I used the various wizards to generate my main form, which has a ...
0
votes
3answers
552 views

Access Insert Query

I am using C# to write/read to an Access 2007 Database. The table is ID - AutoNumber [pkey] Fname - Text Lname - Text Address - Text The query string I Use is "Insert into TblMain ...