Hi,
I'have a table with field INT1,INT2,INT3.
On Oracle if I worte SELECT * FROM MyTable WHERE (INT2 = :INT2) it work fine but in postgres params.count = 0, INT2 is a reserved word in Posgres. It Works if I change the query in Format('SELECT * FROM MyTable WHERE (INT2 = %d)',[MyValue]).
Thanks