| ADOdb Library for PHP Manual | ||
|---|---|---|
| Prev | GetRowAssoc | Next |
Returns an associative array containing the current row. The keys to the array are the column names. The column names are upper-cased for easy access. To get the next row, you will still need to call MoveNext().
For example:
Array ( [ID] => 1 [FIRSTNAME] => Caroline [LASTNAME] => Miranda [CREATED]
=> 2001-07-05 )
Note: do not use GetRowAssoc() with $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC. Because they have the same functionality, they will interfere with each other.
| Prev | Home | Next |
| Close2 | Up | Fields |