invalid sql statement,expected "delete","insert","procedure","select" or "update"
it a run time error which i recieve when an saving a record to the database. and this is the code.
rsord.Open "order", cnnord, adOpenKeyset, adLockPessimistic
cnnord.Execute "INSERT INTO order(OrderId,DateOrdered,CustomerId,QuatityOrdered,ProductTitle,PurchasedUnitPrice);" _
& "VALUES('" & txtoid.Text & "','" & txtod.Text & "','" & txtcid.Text & "',' " & txtqo.Text & "',' " & txtPt.Text & "',' " & txtpup.Text & "');"
the bolded statement is highlitened yellow when the error occurs
thanks dani