Hi,
A strange issue, but I am for the first time updating a servoy 3.5 offline solution with an update through an import into the repository where I have created a new Sybase table.
For my offline solution, the tables all use local pks starting at over 10,000,000 using servoy sequences so that when i do my syncronisation it knows records added locally and can create a server record and then swap out the temporary key.
The issue I have now is that by adding a table, and setting the incrementation in the servoy sequence to 10,000,000 in my master copy, this doesnt set the updated solutions sequence in its new table to 10,000,000, it starts at 1!
I added some code on record creation in the solution to change the id to 10,000,000 if it was less than that, but that does not then effect the servoy sequence. it just moves to 2!
Is there any way, trick or bodge that I can get this single new table to move its sequence to 10,000,000 in servoy through a method after its creation through my update.
I obviously dont want to reset the servoy sequences i dont think, as then other tables will go below the 10,000,000 for local sequences.
David