Error with VB code

  • Thread starter Thread starter dper77
  • Start date Start date
D

dper77

Guest
I have the following code in my aspx page that deletes the contents from a table in MS Access. However it gives me the error "Syntax error in FROM clause.". Not sure the issue with this code. I tried "Delete * from Catalog" and "Delete from Catalog". Both give me the same error.

Dim strConnString As String = "Provider=Microsoft.JET.OLEDB.4.0; Data Source=C:\TC\Catalog.mdb"
Dim sSql As String = "Delete * from Catalog"
Dim connAccess As New OleDbConnection(strConnString)
Dim cmdAccess As New OleDbCommand(sSql, connAccess)

cmdAccess.CommandType = CommandType.Text

If connAccess.State = ConnectionState.Closed Then
connAccess.Open()
End If

cmdAccess.ExecuteScalar()

Continue reading...
 
Back
Top