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

Rename Min_ classes

This commit is contained in:
Jakub Vrana
2025-03-05 14:12:42 +01:00
parent 45ac930e06
commit 3da09dd31a
18 changed files with 89 additions and 90 deletions

View File

@@ -22,11 +22,11 @@ function get_driver($id) {
return $drivers[$id];
}
/*abstract*/ class Min_SQL {
/*abstract*/ class SqlDriver {
var $_conn;
/** Create object for performing database operations
* @param Min_DB
* @param Db
*/
function __construct($connection) {
$this->_conn = $connection;
@@ -41,7 +41,7 @@ function get_driver($id) {
* @param int result of $adminer->selectLimitProcess()
* @param int index of page starting at zero
* @param bool whether to print the query
* @return Min_Result
* @return Result
*/
function select($table, $select, $where, $group, $order = array(), $limit = 1, $page = 0, $print = false) {
global $adminer, $jush;