Hi all,
Is it possible to call a database sequence from DQL? I added the sequence directly on the Oracle database (so using an Oracle client and executing a statement like CREATE SEQUENCE .... etc.). Now to call this sequence from DQL, I can't obviously do things like this:
select <sequence_name>.nextval from dual;
Does anybody know how you can call a sequence, if it is possible at all?
Thanks in advance.