sequence-next-val
Returns the next value of an Oracle sequence.
The next value is obtained by executing the following:
SELECT sequence.nextval FROM dual
You execute it against a data source that can be either a JDBC connect string (jdbc:oracle:thin:
username
/
password
@
host
:
port
:
sid
) or a data source JNDI identifier. Only the Oracle thin driver is supported if a JDBC connect string is used.
Example:
oraext:sequence-next-val('employee_id_sequence','jdbc:oracle:thin:xyz/xyz@localhost:1521:ORCL')
Signature:
oraext:sequence-next-val(sequence as string, data source as string)
Arguments:
-
sequence
: The sequence number in the database. -
data source
: Either a JDBC connect string or a data source JNDI identifier.
Property IDs:
-
namespace-uri:
http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc
-
namespace-prefix
:oraext