method iselectAll documentation in bbn\Db\Languages\Sql
Return the searched rows as an array of numeric arrays.
Example
X::dump($db->iselectAll("tab_users", ["id", "name", "surname"], [["id", ">", 1]],["id" => "ASC"],2));
/*
(array)[
[
2,
"John",
"Smith",
],
[
3,
"Thomas",
"Jones",
]
]
function($table, $fields = [], array $where = [], array $order = [], int $limit = 0, int $start = 0)
{
if ($r = $this->_exec(...$this->_add_kind(\func_get_args()))) {
return $r->getIrows();
}
return null;
}
Return the searched rows as an array of numeric arrays. BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2024
BBN Solutions