pdo - fetch assoc only

This commit is contained in:
zotlabs 2016-10-25 16:15:39 -07:00
parent 25982f0475
commit 7b713e2576

View file

@ -54,7 +54,7 @@ class dba_pdo extends dba_driver {
$select = ((stripos($sql,'select') === 0) ? true : false);
try {
$result = $this->db->query($sql);
$result = $this->db->query($sql, PDO::FETCH_ASSOC);
}
catch(PDOException $e) {