PDOWrapper::selectMaster PHP Метод

selectMaster() публичный Метод

- retrieve information from the master database, as an array
public selectMaster ( $table, $params = [], integer $limit = null, integer $start = null, array $order_by = null ) : mixed
$limit integer (optional) - the amount of rows to return
$start integer (optional) - the row to start on, indexed by zero
$order_by array (optional) - an array with order by clause
Результат mixed - associate representing the fetched table row, false on failure
    public function selectMaster($table, $params = array(), $limit = null, $start = null, $order_by = null)
    {
        return $this->select($table, $params, $limit, $start, $order_by, true);
    }