Does anyone know if their is an odbc equilant to the mysql_insert_id function???
Cheers
No, but you can use the query
select last_insert_id()
immediately after the insert on the table with the auto_increment column.