git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@353 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2007-08-31 09:09:32 +00:00
parent 5dc6d5c671
commit a6cbb87c69

View file

@ -10,7 +10,7 @@ function dump_table($table, $data = true) {
echo $mysql->result($result, 1) . ";\n\n";
$result->free();
if ($data) {
$result = $mysql->query("SELECT * FROM " . idf_escape($table)); //! enum and set as numbers, binary as _binary
$result = $mysql->query("SELECT * FROM " . idf_escape($table)); //! enum and set as numbers, binary as _binary, microtime
if ($result) {
while ($row = $result->fetch_row()) {
foreach ($row as $key => $val) {