<cfprocresult>
Specifies a result set name that other tags, such as cfoutput and cftable, use to access the result set.
It also lets you optionally identify which of the stored procedure's result sets to return.
The cfprocresult tag is nested within a cfstoredproc tag.
This tag cannot have a body.
This tag is also supported within <cfscript>
		<cfprocresult
    name=string
    resultSet=number
    maxRows=number
>
	
		| Attribute | Description | 
|---|---|
name 
							string, required
							 | 
							
								edit
								 Name for the query result set. Alias: variable  | 
						
resultSet 
							number, optional
							 | 
							
								edit
								 Identifies the desired result set if the stored procedure returns multiple result sets. Default is 1.  | 
						
maxRows 
							number, optional
							 | 
							
								edit
								 Specifies the maximum number of rows returned in the result set. The default is to return all rows in the result set.  | 
						
Examples
editThere are currently no examples for this tag.
See also
- Search Issue Tracker open_in_new
 - Search Lucee Test Cases open_in_new (good for further, detailed examples)