Subject Re: [IBO] access to the native / executed SQL of a query
Author Jason Wharton
Not automatically. You would have to do this manually.

Jason Wharton
CPS - Mesa AZ
http://www.ibobjects.com


----- Original Message -----
From: <stahlberger@...>
To: <IBObjects@yahoogroups.com>
Sent: Tuesday, April 17, 2001 8:37 AM
Subject: [IBO] access to the native / executed SQL of a query


> 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