SQL Server and Access

I was looking in the MSDN forums for a site for access questions.  I need to modify some sql server code to work for access.    I get a "missing operator" exception when I try to execute this sql server code in my new application. 

I get very confused about what in a access sql command required brackets/quotes.

Where can I go in the forums to get questions addressed regarding access

Dim UpdateCommand As String

UpdateCommand = "UPDATE " & AdditionStructure.DatabaseTable & " SET ChildIndexList = @ChildIndexList FROM " & AdditionStructure.DatabaseTable & " WHERE (ID = @ID)"

Dim MyUpdateCommand As New OleDbCommand(UpdateCommand, Con)

MyUpdateCommand.Parameters.Add("@ID", AdditionStructure.ParentId)

MyUpdateCommand.Parameters.Add("@ChildIndexList", AdditionStructure.ParentChildIndexList)

MyUpdateCommand.ExecuteNonQuery()




Answer this question

SQL Server and Access