HI,
I have NOT been able to get "autonumber" to work with the ACCESS 2000 database when using SQL when the table is defined as:
CONF_ID autonumber (Indexed, No Duplicates)
FLD_2 text
FLD_3 text
INSERT into JUNKTABLE values ('Foo1', 'Foo2');
ERR: Number of query values and destination fields are not the same.
ACCESS will insert when I supply a dummy value for the autonumber,
INSERT into JUNKTABLE values (2, 'Foo1', 'Foo2');
but that value does not increment. NUTS.
I have searched online, but not found a direct answer to this problem.
Any ideas?
Thanks,
Norm
I have NOT been able to get "autonumber" to work with the ACCESS 2000 database when using SQL when the table is defined as:
CONF_ID autonumber (Indexed, No Duplicates)
FLD_2 text
FLD_3 text
INSERT into JUNKTABLE values ('Foo1', 'Foo2');
ERR: Number of query values and destination fields are not the same.
ACCESS will insert when I supply a dummy value for the autonumber,
INSERT into JUNKTABLE values (2, 'Foo1', 'Foo2');
but that value does not increment. NUTS.
I have searched online, but not found a direct answer to this problem.
Any ideas?
Thanks,
Norm