Inserting date into db access in vb
I am a bit stuck and I have no idea what I am doing wrong. I want to insert current date into MS Access database in VB. Part of the code im having problems:
SQLString = "INSERT INTO Sales(DateSold) VALUES ("
SQLString += Date.Today & ")"
The type in the database is date and dd / mm / year. Thanks in advance for your help.
+2
source to share