summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Newnham <mark@newnhams.com>2021-04-04 21:46:15 -0600
committerDamien Regad <dregad@mantisbt.org>2021-08-22 11:17:48 +0200
commitf110367c375c9f184cae2a7884321bf29688d3b2 (patch)
tree01c07627be2ed57bd7cb0613a8fadf6a8c9a2268
parent57d25b269d0486666a93690be95f6da3686b9f9f (diff)
downloadadodb-f110367c375c9f184cae2a7884321bf29688d3b2.tar.gz
adodb-f110367c375c9f184cae2a7884321bf29688d3b2.tar.bz2
adodb-f110367c375c9f184cae2a7884321bf29688d3b2.zip
Remove emulated fetchAssoc
-rw-r--r--drivers/adodb-firebird.inc.php16
1 files changed, 1 insertions, 15 deletions
diff --git a/drivers/adodb-firebird.inc.php b/drivers/adodb-firebird.inc.php
index 30442cc0..f1dc6bdc 100644
--- a/drivers/adodb-firebird.inc.php
+++ b/drivers/adodb-firebird.inc.php
@@ -1281,13 +1281,7 @@ class ADORecordset_firebird extends ADORecordSet
}
$this->fields = $f;
- /*
- if ($this->fetchModse == ADODB_FETCH_ASSOC) {
- $this->fields = $this->GetRowAssoc();
- } else if ($this->fetchMode == ADODB_FETCH_BOTH) {
- $this->fields = array_merge($this->fields,$this->GetRowAssoc());
- }
- */
+
return true;
}
@@ -1311,14 +1305,6 @@ class ADORecordset_firebird extends ADORecordSet
*/
$this->bind = array_change_key_case($this->fieldObjectsIndex,CASE_UPPER);
- print_r($this->bind); exit;
- /*
-
- for ($i=0; $i < $this->_numOfFields; $i++) {
- $o = $this->FetchField($i);
- $this->bind[strtoupper($o->name)] = $i;
- }
- */
}
return $this->fields[$this->bind[strtoupper($colname)]];