1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-15 11:04:02 +02:00

selectQueryBuild() method

This commit is contained in:
Jakub Vrana
2012-08-23 22:17:44 -07:00
parent 5d337fe04c
commit 700a78b377
4 changed files with 28 additions and 1 deletions

View File

@@ -411,6 +411,10 @@ ORDER BY ORDINAL_POSITION", null, "") as $row) { //! requires MySQL 5
return false;
}
function selectQueryBuild($select, $where, $group, $order, $limit, $page) {
return "";
}
function messageQuery($query) {
return " <span class='time'>" . @date("H:i:s") . "</span><!--\n" . str_replace("--", "--><!-- ", $query) . "\n-->";
}