ColdFusion CFDUMP - How to show query output

cfdump - dump query

cfdumpQuery.cfm


<!DOCTYPE html">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfdump example: how to dump query</title>
</head>

<body>
<h2 style="color:hotpink">cfdump example: how to dump query</h2>

<cfquery name="qBooks" datasource="cfbookclub">
 SELECT AuthorID, Title FROM BOOKS
</cfquery>
<cfdump var="#qBooks#">
</body>
</html>





More ColdFusion examples