sergiotp Posted July 2, 2004 Report Share Posted July 2, 2004 Fala ae glr beleza??Tipo já tentei de tudo nem to conseguindo arrumar essa parada aqui, novato é fogo mas vo aprender O erro:Tipo de erro:Microsoft JET Database Engine (0x80040E14)Erro de sintaxe na instrução INSERT INTO./site/admin/scoluna.asp, line 11O Código:<%Set Conexao = Server.CreateObject("ADODB.Connection") Dim Dbq Dbq = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("coluna.mdb") & ";Persist Security Info=False;Jet OLEDB:Database Password=" Conexao.Open Dbq desc = Request.form("desc") data = Request.form("data") texto = Request.form("texto") Sql1 = "INSERT INTO coluna(data,desc,texto) Values ('"& desc & "', '"& data & "', '"& texto & "')" Set Rs = Conexao.Execute(Sql1) Rs.open Conexao.close Set rs = Nothing Set conexao = Nothing%> Quote Link to comment Share on other sites More sharing options...
0 bareta Posted July 2, 2004 Report Share Posted July 2, 2004 http://www.aspbrasil.com.br/TUTORIAIS/deta...odConteudo=1144vamos ver seu insertSql1 = "INSERT INTO coluna(data,desc,texto) Values ('"& desc & "', '"& data & "', '"& texto & "')"Set Rs = Conexao.Execute(Sql1)Rs.openagora inverta os em azul e tire o em vermelhoSql1 = "INSERT INTO coluna(data,desc,texto) Values ('"& data & "', '"& desc & "', '"& texto & "')" Set Rs = Conexao.Execute(Sql1)verifique se esta tudo correto nos campos Quote Link to comment Share on other sites More sharing options...
Question
sergiotp
Fala ae glr beleza??
Tipo já tentei de tudo nem to conseguindo arrumar essa parada aqui, novato é fogo mas vo aprender
O erro:
Tipo de erro:
Microsoft JET Database Engine (0x80040E14)
Erro de sintaxe na instrução INSERT INTO.
/site/admin/scoluna.asp, line 11
O Código:
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.