I am writing a Cold Fusion application using Access. How do I insert a row that has an auto updatable primary key? Do i need to specify that column in the insert statement?(i tried this but it didn't work
INSERT INTO users VALUES ('#FIRSTNAME#','#LASTNAME#');
Cold Fusion asks for that 3rd column's value....)
INSERT INTO users VALUES ('#FIRSTNAME#','#LASTNAME#');
Cold Fusion asks for that 3rd column's value....)