]> git.joonet.de Git - adminer.git/commitdiff
Microseconds are not stored in MySQL
authorJakub Vrana <jakub@vrana.cz>
Thu, 7 Oct 2010 13:24:36 +0000 (15:24 +0200)
committerJakub Vrana <jakub@vrana.cz>
Thu, 7 Oct 2010 13:24:36 +0000 (15:24 +0200)
adminer/include/export.inc.php

index 052ab9757f5f2f334bb50d8c11b9cc2beb775597..93d827be39ba38fc4a80216ca0bc0f4962671ec7 100644 (file)
@@ -111,7 +111,7 @@ function dump_data($table, $style, $select = "") {
                        echo truncate_sql($table) . ";\n";
                }
                $fields = fields($table);
-               $result = $connection->query(($select ? $select : "SELECT * FROM " . table($table)), 1); // 1 - MYSQLI_USE_RESULT //! enum and set as numbers, microtime
+               $result = $connection->query(($select ? $select : "SELECT * FROM " . table($table)), 1); // 1 - MYSQLI_USE_RESULT //! enum and set as numbers
                if ($result) {
                        $insert = "";
                        $buffer = "";