I'm facing a strange behavior using UniDAC 5.2.5 on Lazarus 1.0.14 (64 bits).
I'm connecting to a remote MySql database, the connection between the 'TUniConnection' component and the remote database is being stablished, I dropped a 'TUniQuery' component in my form and through the UniQuery Editor option, I'm defining the following statement as the SQL query:
Code: Select all
select * from clientesCode: 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, ...)