Is there an easy way to get the sql that is sent in UPDATE query
I have an UPDATE query abbreviated for readability. Is there an easy way to get the sql that is sent? I use get that info for select sql in the debug view in cfeclipse but not for UPDATE.
<cfquery debug="" name="q" datasource="#datasource#">
UPDATE [BookingSystem].[dbo].[tbTrades]
SET
[status] = #MATCHED_STATUS#
WHERE
clientID = <cfqueryparam value="#arguments.clientID#" cfsqltype="cf_sql_integer"> AND
</cfquery>
