could someone post an example of a INSERT statement using an OleDbConnection.
thanks
eye
Printable View
could someone post an example of a INSERT statement using an OleDbConnection.
thanks
eye
Are you asking for an example of a INSERT SQL Statement ?
INSERT (column names) (column values)
yes
"INSERT INTO MyTable(Column1, " & _
"Column2, Column3) VALUES (1,2,'3')"
thanks...do you know how I would execute this statement in ASP.NET?