How can i easily delete a record from a database, preferably not using SQL, but i guess SQL is ok.
Printable View
How can i easily delete a record from a database, preferably not using SQL, but i guess SQL is ok.
key_number = 45
strSQL = "DELETE * FROM tblTABLE Where key_field=" & key_number
Connection.Execute(strSQL)
that type of thing.
hope it helps