我在 Devart TMSQuery.SQL 中有一个带有参数的查询。就像是
select * from customers
where customer = :CustomerID
在我做的代码中
// Delphi
sqlcustomer.ParamByName('CustomerID').asinteger := 4;
sqlcustomer.open;
我想调试并查看发送到服务器的确切 sql 命令,如果我尝试使用 TMSQuery.sql 我只有:CustomerID,而我想要这个:
select * from customers
where customer = 4
有没有一种快速的方法可以在不读取所有参数并大量重建查询的情况下实现这一点?
当然我有一个非常大的查询,超过 100 个参数,这就是我需要这个的原因