ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:adodb_fetch_mode

This is an old revision of the document!


$ADODB_FETCH_MODE

TypeInteger
Default0

Do not confuse with the setFetchMode() function

This is a global variable that determines how arrays are retrieved by recordsets. The recordset saves this value on creation (eg. in Execute or SelectLimit), and any subsequent changes to $ADODB_FETCH_MODE have no affect on existing recordsets, only on recordsets created in the future.


Constants

NameValueDescription
ADODB_FETCH_DEFAULT0The recordset is returned in the default provided by the PHP driver. Use of this value is not recommended if writing cross-database applications
ADODB_FETCH_NUM1The recordset is returned as a numeric array
ADODB_FETCH_ASSOC2The recordset is returned as an associative array
ADODB_FETCH_BOTH3The record is returned as both a numeric and associative arrays

Syntax

$ADODB_FETCH_MODE = ADODB_FETCH_NUM;
v5/reference/adodb_fetch_mode.1436725866.txt.gz · Last modified: 2017/04/21 11:31 (external edit)