Skip to content
Advertisement

Setting generator to specific value

I”m converting a database and I need to set a generator to a value prior to generating new numbers.

Say the generator is called gtest. I’ve tried the following:

JavaScript

and

JavaScript

Option 1 gives me invalid syntax and option 2 gives unkown system variable.

What am I doing wrong?

Advertisement

Answer

I am beginning to suspect you are using a connection to a non-firebird database as there is no Firebird error message “Unknown system variable” (that is however a MySQL error).

I have tested it with Jaybird 2.2.4 on Firebird 2.5 and both ALTER SEQUENCE ... RESTART WITH ... and SET GENERATOR ... TO ... work without error.

I used the following sample program:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement