Code: Select all
select * from customers
where customer = :CustomerIDCode: Select all
// Delphi
sqlcustomer.ParamByName('CustomerID').asinteger := 4;
sqlcustomer.open;Code: Select all
select * from customers
where customer = :CustomerIDCode: Select all
select * from customers
where customer = 4If I use TMSQuery.Debug := True I still see the parameters instead of the EXACT QUERY PASSED TO THE SERVER.
May you help me?