getFetchMode

Syntax From 5.21.0
  int getFetchMode()
See Also

setFetchMode
$ADODB_FETCH_MODE

Returns the current recordset fetch mode

Return Value

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. (limited database support)

Usage

$mode = $db->getFetchMode();