UniSQLMonitor Event OnSql - Param Text
Posted: Mon 06 Feb 2012 21:02
Hello, I'm using UniSQLmonitor to get the SQL statement will send to the database.
I get the text like
update "PESSOA" set
"PESS_NOME" = :1
where
"PESS_ID" = :2
:1(String[9],IN)='CUSTOMER1'
:2(Integer,IN)=-1
I'd like to get the SQL compatible to run in the DataBase, like
update "PESSOA" set
"PESS_NOME" = 'CUSTOMER1'
where
"PESS_ID" = -1
is there any way to get the SQL command like this?
Thanks
I get the text like
update "PESSOA" set
"PESS_NOME" = :1
where
"PESS_ID" = :2
:1(String[9],IN)='CUSTOMER1'
:2(Integer,IN)=-1
I'd like to get the SQL compatible to run in the DataBase, like
update "PESSOA" set
"PESS_NOME" = 'CUSTOMER1'
where
"PESS_ID" = -1
is there any way to get the SQL command like this?
Thanks