| Property | Defined by | ||
|---|---|---|---|
| numColumns : int [read-only]
Returns the number of columns in the ResultSet
| ResultSet | ||
| Method | Defined by | ||
|---|---|---|---|
| ResultSet | |||
|
[static]
Used by Connection when building the ResultSet, should never
be called directly
| ResultSet | ||
|
[static]
Used by Connection when building the ResultSet, should never
be called directly
| ResultSet | ||
|
first():Boolean
Moves the pointer to the first row
| ResultSet | ||
|
getColumns():Array
Returns an array for Field objects
| ResultSet | ||
|
getRows():ArrayCollection
Returns all rows as a bindable ArrayCollection
| ResultSet | ||
|
getString(column:*):String
Returns a String value from the specified column.
| ResultSet | ||
|
initialize(rs:ResultSet):void
[static]
Used by Connection when building the ResultSet, should never
be called directly
| ResultSet | ||
|
last():Boolean
Moves the pointer to the last row.
| ResultSet | ||
|
next():Boolean
Advances the pointer to the next row
| ResultSet | ||
| numColumns | property |
numColumns:int [read-only]Returns the number of columns in the ResultSet
Implementation public function get numColumns():int
| ResultSet | () | constructor |
public function ResultSet()
| addColumn | () | method |
public static function addColumn(rs:ResultSet, column:Field):voidUsed by Connection when building the ResultSet, should never be called directly
Parametersrs:ResultSet |
|
column:Field |
| addRow | () | method |
public static function addRow(rs:ResultSet, row:Array):voidUsed by Connection when building the ResultSet, should never be called directly
Parametersrs:ResultSet |
|
row:Array |
| first | () | method |
public function first():BooleanMoves the pointer to the first row
ReturnsBoolean |
| getColumns | () | method |
public function getColumns():ArrayReturns an array for Field objects
ReturnsArray |
| getRows | () | method |
public function getRows():ArrayCollectionReturns all rows as a bindable ArrayCollection
ReturnsArrayCollection |
| getString | () | method |
public function getString(column:*):StringReturns a String value from the specified column. You may specify columns using a 1-based number or the column name
Parameterscolumn:* |
String |
| initialize | () | method |
public static function initialize(rs:ResultSet):voidUsed by Connection when building the ResultSet, should never be called directly
Parametersrs:ResultSet |
| last | () | method |
public function last():BooleanMoves the pointer to the last row.
ReturnsBoolean |
| next | () | method |
public function next():BooleanAdvances the pointer to the next row
ReturnsBoolean |