ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:getfetchmode

This is an old revision of the document!


getFetchMode

Returns the current recordset fetch mode

Syntax From 5.21.0
  int getFetchMode()

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();  
v5/reference/connection/getfetchmode.1452981988.txt.gz · Last modified: 2017/04/21 11:35 (external edit)