Debugging Classes Reference - MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual

Developing web applications with coldfusion
Table of Contents

Advertisement

288
}
catch( Throwable e )
{
}
}
public void processRequest( Request request ) throws Exception
{
// ...code for processing the request...
}
}

Debugging Classes Reference

The specific constructors and methods supported by the
DebugResponse
support the other methods of the
respectively.
DebugRequest
// initialize a debug request with attributes
public DebugRequest( Hashtable attributes ) ;
// initialize a debug request with attributes and a query
public DebugRequest( Hashtable attributes, Query query ) ;
// initialize a debug request with attributes, a query, and settings
public DebugRequest( Hashtable attributes, Query query,
DebugResponse
// initialize a debug response
public DebugResponse() ;
// print the results of processing
public void printResults() ;
DebugQuery query =
new DebugQuery( "Employees", columns, data ) ;
// create tag, process debug request, and print results
OutputQuery tag = new OutputQuery() ;
DebugRequest request = new DebugRequest( attributes, query ) ;
DebugResponse response = new DebugResponse() ;
tag.processRequest( request, response ) ;
response.printResults() ;
e.printStackTrace() ;
, and
classes are as follows. Note that these classes also
DebugQuery
Request
Hashtable settings ) ;
Developing Web Applications with ColdFusion
DebugRequest
,
, and
interfaces,
Response
Query
,

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the COLDFUSION 4.5-DEVELOPING WEB and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Coldfusion 4.5

Table of Contents