In the Administrator, when Database Activity is selected on the Debugging Settings page, the debugging output includes information about database access.
The SQL Queries section provides information about tags that generate SQL queries or result in retrieving a cached database query: cfquery
, cfinsert
, cfgridupdate
, and cfupdate
. The section looks like the following figure in the dockable.cfm output format:
The output displays the following information:
cfqueryparam
tags. This information is particularly useful because it shows the results of all ColdFusion processing of the SQL statement.
cfqueryparam
tags.
The stored procedures section displays information about the results of using the cfstoredproc
tag to execute a stored procedure in a database management system.
The Stored Procedures section looks as follows in the classic.cfm output format:
The output displays the following information:
cfprocparam
tags, including the ctype
, CFSQLType
, value
variable
, and dbVarName
attributes. The variable
information for OUT and INOUT parameters includes the returned value.
cfprocresult
tag.