> im building a webapp wit hMs Access as a backend database.
Bad idea.
The JDBC ODBC bridge is not suited for multithreaded apps
like web apps.
> The problem is that im unable to retieve auto-generated keys values
> after i do an insert operation.
> correct me if i was wrong, but auto-generated key values mean the
> autonumber column values NOT the rowIDs right ?
Correct.
> i dont know if jdbc-odbc for access supports this, i just need a clue
> on what to do !
I don't know whether stmt.getGeneratedKeys but @@IDENTITY in
SQL will work.
Arne