====== getFetchMode ======
~~NOTOC~~
== Syntax From 5.21.0 ==
int getFetchMode()
== See Also ==
[[v5:reference:connection:setFetchMode()]]\\
[[v5:reference:$ADODB_FETCH_MODE]]\\
Returns the current [[v5:reference:connection:setfetchmode|recordset fetch mode]]
==== Return Value ====
^Name^Value^Description^
|ADODB_FETCH_DEFAULT|0|The 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_NUM|1|The recordset is returned as a numeric array|
|ADODB_FETCH_ASSOC|2|The recordset is returned as an associative array|
|ADODB_FETCH_BOTH|3|The record is returned as both a numeric and associative arrays. (limited database support)|
===== Usage =====
$mode = $db->getFetchMode();