SEQUENCE-NEXT — Increment the value of a database sequence.Function
name
The name of the sequence as a string, symbol or SQL expression.
database
A database object which defaults to *default-database*.
result
An integer.
Increment and return the value of the sequence called
name
in database
which defaults to *default-database*.
(sequence-last [foo]) => 3 (sequence-next [foo]) => 4 (sequence-next [foo]) => 5 (sequence-next [foo]) => 6
Will signal an error of type
sql-database-data-error if a sequence called
name
does not exist in
database
.