]> git.joonet.de Git - adminer.git/commitdiff
SQLite PDO: Display results in SQL query
authorJakub Vrana <jakub@vrana.cz>
Mon, 24 Mar 2025 12:43:55 +0000 (13:43 +0100)
committerJakub Vrana <jakub@vrana.cz>
Mon, 24 Mar 2025 12:53:11 +0000 (13:53 +0100)
CHANGELOG.md
adminer/drivers/sqlite.inc.php

index 6c4053bf139326e71f45ee67c68eb7dfa5e62017..f7fc77c2ecdb37b9264c9df67f7407397e1bd9e7 100644 (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)
index f2f614ac6df291129c7f767df016b8f21e688bc0..6beb2ff0d018441edecfaea1725025b6f48d0c55 100644 (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;
-                       }
                }
        }