V
VMI
How can I create an Access table that has an autonumber field?
I usually create the sql string and then run it with ExecuteNonQuery(). But
I added the AUTONUMBER keyword and it's giving me a syntax error.
This is the sql script I'm using: create table myTable (line_id AUTONUMBER,
field1 TEXT(50), field2 TEXT(50))
Any help is appreciated. Thanks.
I usually create the sql string and then run it with ExecuteNonQuery(). But
I added the AUTONUMBER keyword and it's giving me a syntax error.
This is the sql script I'm using: create table myTable (line_id AUTONUMBER,
field1 TEXT(50), field2 TEXT(50))
Any help is appreciated. Thanks.