in some projects we use "TDBAccessUtils.SQLGenerator(AQuery).GenerateSQLforUpdTable ..." to generate sql-statements for "TIBCQuery".
we recently updated ibdac from 5.2.6 to 5.3.7.
with version 5.2.6 everything works like a charm but after updating to 5.3.7 we run into the same issue as described here: http://forums.devart.com/viewtopic.php?f=28&t=28618
Code: Select all
INSERT INTO CLIENTES
(CGC, DIV, RAZAO, CIDADE, ...)
VALUES
(?, ?, ?, ?, ...)Code: Select all
INSERT INTO CLIENTES
(CGC, DIV, RAZAO, CIDADE, ...)
VALUES
(:cgc, :div, :razao, :cidade, ...)thank you