Subject Re: [Firebird-Java] prepared statement
Author Roman Rokytskyy
> I want the sql from perp statement because i want to
> do a kind of custom replication.

Well, then I guess you need to have an SQL statement. If you cannot reuse
the code in the p6spy, then I suspect you have to create it yourself.

On the other hand, what prevents you from saving the statement with '?'
followed by some string-encoded list of parameter values? Your client then
prepared the statement and fills the parameters decoded from the list.
Almost the same as it were with a normal SQL.

Roman