Hi,
Is there a way to get information about sequences/generators from the
java.sql.DatabaseMetaData? Some RDBMS use auto-increment columns, which
I can see in getColumns(), but if I use sequences, I have to use
RDBMS-specific code to get information about?
Thanks for all ideas
Andre
Thomas Kellerer - 27 Jun 2009 11:13 GMT
Andre Rothe wrote on 27.06.2009 11:59:
> but if I use sequences, I have to use
> RDBMS-specific code to get information about?
Yes, with the exception of Postgres which returns sequences in getTables() as well.
Thomas