i am using the following command to create a table in an mdb database, it works fine when i remove the autonumber type
"CREATE TABLE pxs(sid Autonumber , Adress Text , Port Text, user Text, pass Text, sreq Integer, freq Integer)"
so how should i define an id column as autonumber?
You can use:
Note that
useris a reserved word, so you might like to use some other name.