Tagged Questions

4
votes
2answers
3k views

How to get the next identity number used in SQL 2005 and ASP?

I was previously getting the next available autonumber used in Access by doing a simple query like so: SELECT RecordNumber, Info FROM myTABLE WHERE 0=1 This way I could create a variable to hold ...