Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

edu4rdo

inserir string numa tabela

Recommended Posts

Bom, precisa inserir uma string numa tabela do SQL Server...Como fazer?Tentei:sql := 'INSERT INTO tabela (string_teste,int_teste) VALUES ('teste',5)';sql := 'INSERT INTO tabela (string_teste,int_teste) VALUES ("teste",5)';sql := 'INSERT INTO inv_info (string_teste,int_teste) VALUES (\'teste\',5)';sql := 'INSERT INTO inv_info (string_teste,int_teste) VALUES (\"teste\",5)';e nada funciona... alguém?? :mellow:

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bom, precisa inserir uma string numa tabela do SQL Server...Como fazer?Tentei:sql := 'INSERT INTO tabela (string_teste,int_teste) VALUES ('teste',5)';sql := 'INSERT INTO tabela (string_teste,int_teste) VALUES ("teste",5)';sql := 'INSERT INTO inv_info (string_teste,int_teste) VALUES (\'teste\',5)';sql := 'INSERT INTO inv_info (string_teste,int_teste) VALUES (\"teste\",5)';e nada funciona... alguém?? :mellow:

Já descobri... tem que por duas aspas simples pro Delphi considerar uma...sql := 'INSERT INTO tabela (string_teste,int_teste) VALUES (''teste'',5)'; :D

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.