Hi, guys:
I need a primary key (sequence) generator for multiple tables.
I will have to programatically store/retrieve primary keys and save them as
foreign keys for other tables using
Java JDBC.
I also looked at AUTO_INCREMENT of MySQL, but how can I use it for multiple tables and retrieve the most recent key to use without producing duplications?
regards,