vote up 6 vote down star

I have a number of child tables that have a foreign key to a parent table.

How do I add an entry in the parent table and get the primary key of that entry, so that I can then enter rows in the child tables that point to the entry in the parent table?

I'm doing this in a MS Access Database from a C# application.

flag

You're not using an Access database, but a Jet database. Access is an application development platform, while Jet is the database engine for the data store that the default in Access. – David W. Fenton Oct 8 '08 at 16:43

5 Answers

vote up 5 vote down check

Microsoft Access 2000 or later does support the @@IDENTITY property to retrieve the value of an Autonumber field after an INSERT. (msdn)

Edit: This is the link to a similar article for .NET 3.5

link|flag
-1 for referencing outdated information. The .NET 3.5 section makes not mention of this. – leppie Oct 8 '08 at 9:38
Leppie, writting the updated information would have been great!! – Adolfo G.U. Oct 8 '08 at 9:50
Added a 3.5 link, which is available on the originally linked page. – Instantsoup Oct 8 '08 at 15:01
vote up 0 vote down

Already answered (where the number of referencing tables is one). See:

http://stackoverflow.com/questions/151905/best-way-to-make-double-insert

link|flag
vote up 4 vote down

Getting the identity of the most recently added record

link|flag
Great link with an excellent code example. – wcm Oct 7 '08 at 20:49
vote up 1 vote down

Should be able to SELECT @@IDENTITY even though you will have to use a second query to do so. I don't think MS Access will allow it to be combined into one query.

link|flag
vote up 3 vote down

Try looking into the global variables that will give you the identity value. In SQL Server it is:

SELECT @@identity

Also look into the Scope_Identity() function

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.