D doehnhe Member Nov 2, 2000 #1 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)
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)
Marco Kalter Administrator Staff member Nov 6, 2000 #1 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
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