1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-18 12:21:24 +02:00

Fix multi_query

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1323 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2010-02-19 14:33:49 +00:00
parent 3a76704f58
commit e94c2b90de
2 changed files with 16 additions and 18 deletions

View File

@@ -20,32 +20,30 @@ if (extension_loaded('pdo')) {
}
function query($query, $unbuffered = false) {
$return = parent::query($query);
if (!$return) {
$result = parent::query($query);
if (!$result) {
$errorInfo = $this->errorInfo();
$this->error = $errorInfo[2];
return false;
}
if ($return->columnCount()) {
$this->affected_rows = $return->rowCount();
} else {
$return->num_rows = $return->rowCount(); // is not guaranteed to work with all drivers
}
return $return;
$this->store_result($result);
return $result;
}
function multi_query($query) {
return $this->_result = $this->query($query);
}
function store_result() {
$return = &$this->_result;
if ($return->columnCount()) {
$this->affected_rows = $return->rowCount();
return true;
function store_result($result = null) {
if (!$result) {
$result = $this->_result;
}
$return->num_rows = $return->rowCount();
return $return;
if ($result->columnCount()) {
$result->num_rows = $result->rowCount(); // is not guaranteed to work with all drivers
return $result;
}
$this->affected_rows = $result->rowCount();
return true;
}
function next_result() {