cmd = New OleDbCommand("INSERT INTO Tools (ToolID, Description) VALUES ('" & varToolID & "', '" & varDesc & "')", cn)
cmd.ExecuteNonQuery()
cmd is an OleDbCommand
I have tried this an it doesnt work. What is the correct method of executing an INSERT statement ( and UPDATE and DELETE statements for that matter)?
Thank You for all the Help.
cmd.ExecuteNonQuery()
cmd is an OleDbCommand
I have tried this an it doesnt work. What is the correct method of executing an INSERT statement ( and UPDATE and DELETE statements for that matter)?
Thank You for all the Help.