function _fixblobs()
 {
     if ($this->fetchMode == PGSQL_NUM || $this->fetchMode == PGSQL_BOTH) {
         foreach ($this->_blobArr as $k => $v) {
             $this->fields[$k] = ADORecordSet_postgres64::_decode($this->fields[$k]);
         }
     }
     if ($this->fetchMode == PGSQL_ASSOC || $this->fetchMode == PGSQL_BOTH) {
         foreach ($this->_blobArr as $k => $v) {
             $this->fields[$v] = ADORecordSet_postgres64::_decode($this->fields[$v]);
         }
     }
 }
 function _fixblobs()
 {
     return;
     # bypass adodb's bytea handling, so we can handle it ourselves within PHP
     if ($this->fetchMode == PGSQL_NUM || $this->fetchMode == PGSQL_BOTH) {
         foreach ($this->_blobArr as $k => $v) {
             $this->fields[$k] = ADORecordSet_postgres64::_decode($this->fields[$k]);
         }
     }
     if ($this->fetchMode == PGSQL_ASSOC || $this->fetchMode == PGSQL_BOTH) {
         foreach ($this->_blobArr as $k => $v) {
             $this->fields[$v] = ADORecordSet_postgres64::_decode($this->fields[$v]);
         }
     }
 }