SQLite - More questions
Posted: Fri 16 Jul 2010 13:30
Doesn't SQLite have sequences or generators? I get an error with this command:
create sequence MyUniqueId start with 1;
and how to retreive a value? Like this?
select MyUniqueId.nextval from dual;
And what is the maximum number of elements allowed for the "IN" operator?
cu Christian
create sequence MyUniqueId start with 1;
and how to retreive a value? Like this?
select MyUniqueId.nextval from dual;
And what is the maximum number of elements allowed for the "IN" operator?
cu Christian