Sep 20, 2004 #1 hksr MIS Sep 26, 2003 30 HK I have a microsoft access database, there is a record number that assign by the system itself. How can I extract record with that record number.
I have a microsoft access database, there is a record number that assign by the system itself. How can I extract record with that record number.
Sep 21, 2004 #2 vbkris Programmer Jan 20, 2003 5,994 IN that can be done in sql server like this, i dont know if it can be done in access but try it: sql="select @@identity as id" rs.open sql,con response.write rs(0) this code must come after the insert query... Known is handfull, Unknown is worldfull Upvote 0 Downvote
that can be done in sql server like this, i dont know if it can be done in access but try it: sql="select @@identity as id" rs.open sql,con response.write rs(0) this code must come after the insert query... Known is handfull, Unknown is worldfull