1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-16 19:44:00 +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

@@ -452,6 +452,19 @@ username.form['auth[driver]'].onchange();
return false;
}
/** Build SQL query used in select
* @param array result of selectColumnsProcess()[0]
* @param array result of selectSearchProcess()
* @param array result of selectColumnsProcess()[1]
* @param array result of selectOrderProcess()
* @param int result of selectLimitProcess()
* @param int index of page starting at zero
* @return string empty string to use default query
*/
function selectQueryBuild($select, $where, $group, $order, $limit, $page) {
return "";
}
/** Query printed after execution in the message
* @param string executed query
* @return string