|
Postada em 16/02/2006 13:32 hs
e ai galera blz... bom eu tó fazendo o insert da seguinte maneira axsql = "insert into Tarefas (responsavel,codpara,data) values (" & cod_user.Text & "," & Text1.Text & ",'" & Format(CDate(Label8),"yyyy/mm/dd") & "')" cn.execute axsql o erro que ocorre é o seguinte Run-Tima '-2147217900(80040e14)'; [MySQL][ODBC 3.51 Driver ][mydqls-5.0.18-standart]You have an error in your SQL syntax; check the manual that corresponds to your MySQL serve version for the right syntax to use near "2006/03/16')' at line 1 desde jah agradeço... um abraço a todos....
|
|
|
|
|
Postada em 16/02/2006 13:50 hs
o problema n é a data, mas sim a text1.text ela tem q esta entre aspas simples se tiver guardando uma string ou convertida pra numero se tiver guardando um valor numerico Espero ter ajudado
Knight 
http://host.csti.eti.br CSTI WebHosting Hospedando Idéias 
|
|
|
|
Postada em 16/02/2006 14:06 hs
Tente assim: axsql = "insert into Tarefas (responsavel,codpara,data) values ('" & cod_user.Text & "','" & Text1.Text & "','" & Format(CDate(Label8), "yyyy/mm/dd") & "'"
|
|
|
|
Postada em 16/02/2006 14:14 hs
naum deu ceto da o mesmo erro.....
|
|
|
|
Postada em 16/02/2006 14:33 hs
Tenta fazer um replace das barras por traço Ex: para gravar replace(Format(CDate(Label8), "yyyy/mm/dd") ,"/","-") para ler replace(Format(CDate(Label8), "yyyy/mm/dd") ,"-","/") tenta ai e me fala PS: mantenha as aspas no text1 ok
Knight 
http://host.csti.eti.br CSTI WebHosting Hospedando Idéias 
|
TÓPICO EDITADO
|
|
|
|
|
Postada em 16/02/2006 14:40 hs
naum deu certo axsql = "insert into Tarefas (responsavel,codpara,data) values (" & cod_user.Text & "," & Text1.Text & ",'" & Replace(Format(CDate(Label8), "yyyy/mm/dd"), "/", "-") & "')" e nem assim axsql = "insert into Tarefas (responsavel,codpara,data) values (" & cod_user.Text & "," & Text1.Text & "," & Replace(Format(CDate(Label8), "yyyy/mm/dd"), "/", "-") & ")"
|
|
|
|