1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 14:46:36 +02:00

SQLite PDO: Display results in SQL query

This commit is contained in:
Jakub Vrana
2025-03-24 13:43:55 +01:00
parent 84e4971b1e
commit 99163feefb
2 changed files with 1 additions and 8 deletions

View File

@@ -8,6 +8,7 @@
- PostgreSQL: Display description of system variables
- PostgreSQL: Avoid warning about crdb_version (bug #924, regression from 5.0.5)
- PostgreSQL 11: Support PROCEDURE
- SQLite PDO: Display results in SQL query
- MS SQL: Fix collation issues when retrieving default values
- CSS: Sticky table headers (bug #918)
- CSS: Allow more custom styles with dark mode (bug #925)

View File

@@ -116,14 +116,6 @@ if (isset($_GET["sqlite"])) {
}
return false;
}
function multi_query($query) {
return $this->result = $this->query($query);
}
function next_result() {
return false;
}
}
}