mirror of
https://github.com/vrana/adminer.git
synced 2026-05-05 20:07:15 +02:00
Unbuffered queries in PDO
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1184 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -19,7 +19,7 @@ if (extension_loaded('pdo')) {
|
||||
return $this->query("USE " . idf_escape($database));
|
||||
}
|
||||
|
||||
function query($query) { // $unbuffered is not supported
|
||||
function query($query, $unbuffered = false) {
|
||||
$result = parent::query($query);
|
||||
if (!$result) {
|
||||
$errorInfo = $this->errorInfo();
|
||||
|
||||
Reference in New Issue
Block a user