Insert statement problem
I have a table called MyTable in which there are three fields
Id, Name, Address
Id is setup as autonumber field in access2003 database.
Now I use ADO.Net in VB.Net to insert a new record in this table.
Problem is since ID is autonumber a statement like this
"Insert into MyTable values( 'SomeName', 'SomeAddress' )"
fails because it expects ID. But if I have to provide the ID myself then what's the point in having autonumebr field?
what am I doing wrong here?

