Example: I have a TUniQuery "q"
Code: Select all
q.SQL.text := 'select * from products where id = :theid';
q.paramByName('theid').asString := '123';
Code: Select all
select * from products where id = '123';
Code: Select all
q.SQL.text := 'select * from products where id = :theid';
q.paramByName('theid').asString := '123';
Code: Select all
select * from products where id = '123';