Hi All,
Is it possible in PB to get the query string I'm going to execute from PowerScript with the bind variables replaced like in sqlpreview() event of datawindow? How?
Exemple.
Insert into table_test (columA, columnB) Values (:colA, :colB);
I would like to take into a string variable the final statement the PB will send to DB like:
Insert into table_test (columnA, columnB) Values ('valueA', 'valueB')
Thanks