1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 03:24:01 +02:00

Display SQL info

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1271 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2009-12-16 13:29:19 +00:00
parent 1a8a5fdada
commit 2a897fa301
3 changed files with 3 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ if (!$error && $_POST) {
if (preg_match("~^$space*$alter_database", $query)) {
$databases = null; // clear cache
}
echo "<p class='message'>" . lang('Query executed OK, %d row(s) affected.', $connection->affected_rows) . "\n";
echo "<p class='message'>" . lang('Query executed OK, %d row(s) affected.', $connection->affected_rows) . "<br>" . h($connection->info) . "\n";
}
unset($result); // free resultset
} while ($connection->next_result());