SQL Access INSERT INTO Autonumber Field
- by KrazyKash
I'm trying to make a visual basic application which is connected to a Microsoft Access Database using OLEDB. Inside my database I have a user table with the following layout
ID - Autonumber
Username - Text
Password - Text
Email - Text
To insert data into the table I use the following query
INSERT INTO Users (Username, Password, Email) VALUES…