Ja, entweder so oder anschließend den aktuellen Wert der Sequence auszulesen.
Zitat:
Another alternative is to submit 2 queries - the first would be to retrieve
the sequence "nextval":
SELECT [sequence name].NEXTVAL as my_seq_nextval FROM dual
and the next would be the INSERT where you actually provide the
value you just SELECT'ed. It does involve an initial SELECT
query to get
the value of the sequence nextval, but with this approach you don't need
to use the dbi last_insert_id.
[edit] Im zitierten Text macht er es andersherum: erst den nächsten Wert ermitteln, dann einfügen. Im Kern macht das aber keinen Unterschied, man muss lediglich darauf achten, dass das innerhalb derselben Transaktion geschieht. [/edit]