ROWID

doehnhe

Member
I have a table with a ROWID field named ID. What's to do by inserting a new record?

Insert Into table1 (ID,a,b,c) Values (???,1,2,3)
 
You should use a string with the representation of the rowid. for example:

Insert Into table1 (ID,a,b,c) Values ('AAADESAACAAAAj1AAU',1,2,3)

------------------
Marco Kalter
Allround Automations
 
Back
Top