Search results

  1. S

    get last insert id

    Will this work for multiple access?
  2. S

    Legal ways to exit if/endif block

    Using exit's and goto's isn't proper programming... There is always a way to nest the conditions in a way you won't need exits and goto's in most high level programming languages. Exit- and Goto methods make your code hard to understand, especially when dealing with big programs. As for me...
  3. S

    get last insert id

    Hello, I need to get the last insert id from a recordset, similar to the mysql function "mysql_insert_id". Getting it with a SELECT MAX(id) query won't work because the table will be edited by multiple users. Any help would be great, thanks in advance, Stephen Edwards.
Back
Top Bottom