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

Add missing method

This commit is contained in:
Jakub Vrana
2020-12-06 13:00:03 +01:00
parent 50bb83dbf2
commit e0a3205676

View File

@@ -24,6 +24,10 @@ if (extension_loaded('pdo')) {
/*abstract function select_db($database);*/
function quote($string) {
return $this->pdo->quote($string);
}
function query($query, $unbuffered = false) {
$result = $this->pdo->query($query);
$this->error = "";