Hi Venkat, Yes, the jOOQ code generator generates objects for your database sequences, which you can then use through standalone calls or within your SQL statements: http://www.jooq.org/doc/3.0/manual/sql-execution/sequence-execution
This would correspond to the JPA annotation you've cited. Cheers Lukas 2013/6/27 Venkat Sadasivam <[email protected]> > Does jOOQ support sequence based id generator? > > @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = > "EmployeeSeq") > > -- > You received this message because you are subscribed to the Google Groups > "jOOQ User Group" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
