mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 15:16:44 +02:00
Export SQLite views
This commit is contained in:
@@ -620,7 +620,7 @@ if (isset($_GET["sqlite"]) || isset($_GET["sqlite2"])) {
|
|||||||
|
|
||||||
function create_sql($table, $auto_increment) {
|
function create_sql($table, $auto_increment) {
|
||||||
global $connection;
|
global $connection;
|
||||||
$return = $connection->result("SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q($table));
|
$return = $connection->result("SELECT sql FROM sqlite_master WHERE type IN ('table', 'view') AND name = " . q($table));
|
||||||
foreach (indexes($table) as $name => $index) {
|
foreach (indexes($table) as $name => $index) {
|
||||||
if ($name == '') {
|
if ($name == '') {
|
||||||
continue;
|
continue;
|
||||||
|
@@ -9,6 +9,7 @@ MySQL: Display bit type as binary number
|
|||||||
MySQL: Improve export of binary data types
|
MySQL: Improve export of binary data types
|
||||||
MySQL: Fix handling of POINT data type (bug #3582578)
|
MySQL: Fix handling of POINT data type (bug #3582578)
|
||||||
MySQL: Don't export binary and geometry columns twice in select
|
MySQL: Don't export binary and geometry columns twice in select
|
||||||
|
SQLite: Export views
|
||||||
|
|
||||||
Adminer 3.6.4 (released 2013-04-26):
|
Adminer 3.6.4 (released 2013-04-26):
|
||||||
Display pagination on a fixed position
|
Display pagination on a fixed position
|
||||||
|
Reference in New Issue
Block a user