Microseconds are not stored in MySQL

This commit is contained in:
Jakub Vrana 2010-10-07 15:24:36 +02:00
parent 7c10022c6f
commit 23ce3c6188

View 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 = "";