![MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual Download Page 338](http://html1.mh-extra.com/html/macromedia/coldfusion-4-5-developing-web/coldfusion-4-5-developing-web_develop-manual_3286369338.webp)
312
Developing Web Applications with ColdFusion
response
— Interface for generating response to request (output, variables,
queries, etc.)
Throws:
Exception
— If an unexpected error occurs while processing the request.
Interface Query
public abstract interface Query
Interface to a query used or created by a CustomTag. A query contains tabular data
organized by named columns and rows
Method Detail
getName
public String getName()
Retrieves the name of the query.
The following example retrieves the name of the query and writes it back to the
user:
Query query = request.getQuery() ;
response.write( "The query name is: " + query.getName() ) ;
Method Summary
int
addRow()
Adds a new row to the query.
int
getColumnIndex(String name)
Retrieves the index of a column
given its name.
String[]
getColumns()
Retrieves a list of the column
names contained in the query.
String
getData(int iRow, int iCol)
Retrieves a data element from a
row and column of the query.
String
getName()
Retrieves the name of the query.
int
getRowCount()
Retrieves the number of rows in the
query.
void
setData(int iRow, int iCol,
String data)
Sets a data element within a row
and column of the query.
Summary of Contents for COLDFUSION 4.5-DEVELOPING WEB
Page 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Page 14: ...xiv Developing Web Applications with ColdFusion...
Page 26: ...xxvi Developing Web Applications with ColdFusion...
Page 34: ...8 Developing Web Applications with ColdFusion...
Page 70: ...44 Developing Web Applications with ColdFusion...
Page 84: ...58 Developing Web Applications with ColdFusion...
Page 114: ...88 Developing Web Applications with ColdFusion...
Page 148: ...122 Developing Web Applications with ColdFusion...
Page 174: ...148 Developing Web Applications with ColdFusion...
Page 208: ...182 Developing Web Applications with ColdFusion...
Page 244: ...218 Developing Web Applications with ColdFusion...
Page 274: ...248 Developing Web Applications with ColdFusion...
Page 288: ...262 Developing Web Applications with ColdFusion...
Page 300: ...274 Developing Web Applications with ColdFusion...
Page 350: ...324 Developing Web Applications with ColdFusion...
Page 362: ...336 Developing Web Applications with ColdFusion...