| Contents > CFML Reference > ColdFusion Java CFX Reference > Query interface > addRow |
|
|
|
|
||
Adds a row to a query. Call this method to append a row to a query.
Returns the index of the row that was appended to the query.
public int addRow()
The following example demonstrates the addition of two rows to a query that has three columns, City, State, and Zip:
// Define column indexes int iCity = 1, iState = 2, iZip = 3 ; // First row int iRow = query.addRow() ; query.setData( iRow, iCity, "Minneapolis" ) ; query.setData( iRow, iState, "MN" ) ; query.setData( iRow, iZip, "55345" ) ; // Second row iRow = query.addRow() ; query.setData( iRow, iCity, "St. Paul" ) ; query.setData( iRow, iState, "MN" ) ; query.setData( iRow, iZip, "55105" ) ;
|
|
||
| Contents > CFML Reference > ColdFusion Java CFX Reference > Query interface > addRow |
|
|
ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6.1
Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.