Improve PDO_PgSQL support

This commit is contained in:
Jakub Vrana 2012-05-14 00:54:28 -07:00
parent c4a57246ac
commit 40ad846d20
2 changed files with 3 additions and 2 deletions

View file

@ -51,7 +51,7 @@ if (extension_loaded('pdo')) {
function next_result() { function next_result() {
$this->_result->_offset = 0; $this->_result->_offset = 0;
return $this->_result->nextRowset(); return @$this->_result->nextRowset(); // @ - PDO_PgSQL doesn't support it
} }
function result($query, $field = 0) { function result($query, $field = 0) {
@ -79,7 +79,7 @@ if (extension_loaded('pdo')) {
$row = (object) $this->getColumnMeta($this->_offset++); $row = (object) $this->getColumnMeta($this->_offset++);
$row->orgtable = $row->table; $row->orgtable = $row->table;
$row->orgname = $row->name; $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; return $row;
} }
} }

View file

@ -6,6 +6,7 @@ Link to original table in EXPLAIN of SELECT * FROM table t
MySQL: inform about disabled event_scheduler MySQL: inform about disabled event_scheduler
SQLite: support binary data SQLite: support binary data
PostgreSQL: approximate row count in table overview PostgreSQL: approximate row count in table overview
PostgreSQL: improve PDO support in SQL command
Oracle: schema, processlist, table overview numbers Oracle: schema, processlist, table overview numbers
Simplify work with NULL values (customization) Simplify work with NULL values (customization)
Replace JSMin by better JavaScript minifier Replace JSMin by better JavaScript minifier