Subject connection was lost
Author Humberto Reis
Hello Helen,

I forgot to write in the e-mail the word " into ". THE complete
script below is what gives the problem mentioned in the previous e-
mail:

CONNECT 'C:\Maxiteq\MBA\Dados\LCCosta\MBA2001.GDB'
USER 'ABDMBA2001MXQ' PASSWORD 'aqbxdmm1b0a02';
EXEC SQL
set transaction;
insert into produto (CODIGO, DESCRICAO, DESCRICAORESUMIDA, REFERENCIA,
COD_UNIDADE_COMPRA, COD_UNIDADE_VENDA, COD_GRUPOPRODUTO,
COD_CLASSEPRODUTO,ATIVO, COD_TIPOPRODUTO, COD_SITUACAOTRIBUTARIA,
BASEICMS, PRODUTOCOMPOSTO,
GERARCOMISSAO, CONTROLARESTOQUE, TIPOSOMAETIQUETA,
ALTERACOMPOSICAO,CONSIGNADO, PERFIL)
select
CODIGO, DESCRICAO, DESCRICAO, REFERENCIA, UNICOMPRA, UNIVENDA,
GRUPO, CLASSE, SITUACAO, '00', '00',
100, '0', '1', '1', 'C', '0', '0', 'S'
FROM PXprodutos WHERE situacao = '1';
commit;
EXEC SQL
disconnect;

I observed that placing the inactive trigger the connection is not
lost

How to solve the problem?
Thank you