/ Published in: SQL
Get the value of the autonumber field for the last record inserted into an Access database via the current connection.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SET rst = objConn.Execute("SELECT @@IDENTITY") id = rst(0)