function next_result() {
$this->_result->_offset = 0;
- return $this->_result->nextRowset();
+ return @$this->_result->nextRowset(); // @ - PDO_PgSQL doesn't support it
}
function result($query, $field = 0) {
$row = (object) $this->getColumnMeta($this->_offset++);
$row->orgtable = $row->table;
$row->orgname = $row->name;
- $row->charsetnr = (in_array("blob", $row->flags) ? 63 : 0);
+ $row->charsetnr = (in_array("blob", (array) $row->flags) ? 63 : 0);
return $row;
}
}
MySQL: inform about disabled event_scheduler
SQLite: support binary data
PostgreSQL: approximate row count in table overview
+PostgreSQL: improve PDO support in SQL command
Oracle: schema, processlist, table overview numbers
Simplify work with NULL values (customization)
Replace JSMin by better JavaScript minifier