Returns the current recordset fetch mode
| 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) |
$mode = $db->getFetchMode();