Chapter 1: ColdFusion Tags
149
CFOUTPUT
Displays the results of a database query or other operation. If you need to nest
CFOUTPUT tags, please read the "Usage" section.
Syntax
<CFOUTPUT
QUERY="query_name"
GROUP="query_column"
GROUPCASESENSITIVE="yes/no"
STARTROW="start_row"
MAXROWS="max_rows_output">
</CFOUTPUT>
QUERY
Optional. The name of the CFQUERY from which you want to draw data for the
output section.
GROUP
Optional. Specifies the query column to use when you group sets of records
together. Use this attribute if you have retrieved a record set ordered on a certain
query column. For example, if you have a record set that is ordered according to
"Customer_ID" in the CFQUERY tag, you can group the output on "Customer_ID."
The GROUP attribute, which is case sensitive, eliminates adjacent duplicates in
the case where the data is sorted by the specified field. See the
GROUPCASESENSITIVE attribute for information about specifying a case
insensitive grouping.
GROUPCASESENSITIVE
Optional. Boolean indicating whether to group with regard to case or not. The
default value is YES; case is considered while grouping. If the QUERY attribute
specifies a query object that was generated by a case-insensitive SQL query, set the
GROUPCASESENSITIVE attribute to NO to keep the recordset intact.
STARTROW
Optional. Specifies the row from which to start output.
MAXROWS
Optional. Specifies the maximum number of rows you want displayed in the
output section.
Usage
In order to nest CFOUTPUT blocks, you must specify the GROUP and QUERY
attributes at the top-most level, and the GROUP attribute for all inner blocks except for
the inner-most CFOUTPUT block.
Содержание COLDFUSION 4.5-CFML LANGUAGE
Страница 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Страница 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Страница 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Страница 296: ...272 CFMLLanguageReference INPUT TYPE text NAME number2 BR INPUT TYPE submit NAME submit VALUE Add FORM BODY HTML...
Страница 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Страница 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Страница 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Страница 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Страница 557: ...Chapter 2 ColdFusion Functions 533 P CFOUTPUT Value i is employee keysToStruct i CFOUTPUT P CFLOOP CFIF BODY HTML...
Страница 584: ...560 CFMLLanguageReference...
Страница 594: ...570 CFMLLanguageReference...