"Tatsuhiko Miyagawa" <[EMAIL PROTECTED]> writes: > It seems that PostgreSQL JDBC driver doesn't support getGeneratedKeys > method. > > >http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/interfaces/jdbc/org/postgresql/jdbc3/AbstractJdbc3Statement.java
That's because Postgres supports real sequences - and so you are encouraged to pre-fetch the next value of the sequence *before* you do the insert. jas.
