Hello,
This is coming off of an ASP.NET page, using JetSQL. Does anyone see a problem with this syntax?
It will not execute - giving a syntax error.
~Melagan
______
"It's never too late to become what you might have been.
This is coming off of an ASP.NET page, using JetSQL. Does anyone see a problem with this syntax?
Code:
"INSERT INTO tblPlayers " & _
"(pFirst,pLast,pAge,pSex,pCity,pState,Email,Password) VALUES (" & _
"'" & tbpFirst.Text & "'," & _
"'" & tbpLast.Text & "'," & _
"'" & lbpAge.SelectedValue & "'," & _
"'" & lbpSex.SelectedValue & "'," & _
"'" & tbpCity.Text & "'," & _
"'" & tbpState.Text & "'," & _
"'" & tbEmail.Text & "'," & _
"'" & tbPassword.Text & "')"
It will not execute - giving a syntax error.
~Melagan
______
"It's never too late to become what you might have been.