Hello,
Do you know how to, with HXTT Access, get the autonumber value of a newly inserted record? With ODBC/JDBC Bridge, one can use "select @@identity" object to achieve this result.
Thanks,
Jim Billings
|
You an use the standard JDBC API:
Statement.executeUpdate(String sql, int autoGeneratedKeys) and Statement.getGeneratedKeys()
|