Subject access to the native / executed SQL of a query
Author stahlberger@t-online.de
Hi,
is it possible to get the native/executed (paramvalues instead of
paramnames) sql?

Query.SQL contains:
SELECT * FROM PUSER
WHERE PU_ID = :ID AND
PU_ACCOUNT > :ACC

wish to get Access:
SELECT * FROM PUSER
WHERE PU_ID = 5 AND
PU_ACCOUNT > 10000

Greetings Christian