hakin Posted March 14, 2004 Report Share Posted March 14, 2004 Como executo uma querie no interbase com mais de uma linha de comando??? Ex:CREATE TABLE CFOP( CFOP_IND INTEGER NOT NULL, CFOP_CODIGO VARCHAR(10), CFOP_DESCRICAO VARCHAR(350), PRIMARY KEY (CFOP_IND));insert into cfop values(1,'1000','ENTRADAS OU AQUISIÇÕES DE SERVIÇOS DOESTADO');insert into cfop values(2,'1100','COMPRAS PARA INDUSTRIALIZAÇÃO,COMERCIALIZAÇÃO OU PRESTAÇÃO DE SERVIÇOS');insert into cfop values(3,'1101','Compra para industrialização');insert into cfop values(4,'1102','Compra para comercialização');insert into cfop values(5,'1111','Compra para industrialização de mercadoriarecebida anteriormente em consignação industrial'); Quote Link to comment Share on other sites More sharing options...
0 bolomaster Posted March 15, 2004 Report Share Posted March 15, 2004 Meu amigo estou com o post do amigo gladiador que trata de stored procedures, então como eu havia dito a ele entre no site www.delphi.eti.br, que você ira encontrar o que precisa bem explicadinho..abraços Rafael Marciano Quote Link to comment Share on other sites More sharing options...
0 hakin Posted March 15, 2004 Author Report Share Posted March 15, 2004 Num achei não... Quote Link to comment Share on other sites More sharing options...
0 Paulo_Amorim Posted March 15, 2004 Report Share Posted March 15, 2004 OláEm um TQuery é impossivel inserir mais de um comando.Se voce tem um TQuery dinamico, pode colocar na programaçãowith Query doSQL.Add(CREATE TABLE....);ExecSQL;SQL.Clear;SQL.Add(INSERT...);Se o componente for estatico, pode-se criar outro...Até+ Quote Link to comment Share on other sites More sharing options...
Question
hakin
Como executo uma querie no interbase com mais de uma linha de comando???
Ex:
CREATE TABLE CFOP
(
CFOP_IND INTEGER NOT NULL,
CFOP_CODIGO VARCHAR(10),
CFOP_DESCRICAO VARCHAR(350),
PRIMARY KEY (CFOP_IND)
);
insert into cfop values(1,'1000','ENTRADAS OU AQUISIÇÕES DE SERVIÇOS DO
ESTADO');
insert into cfop values(2,'1100','COMPRAS PARA INDUSTRIALIZAÇÃO,
COMERCIALIZAÇÃO OU PRESTAÇÃO DE SERVIÇOS');
insert into cfop values(3,'1101','Compra para industrialização');
insert into cfop values(4,'1102','Compra para comercialização');
insert into cfop values(5,'1111','Compra para industrialização de mercadoria
recebida anteriormente em consignação industrial');
Link to comment
Share on other sites
3 answers 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.