mirror of
https://github.com/dg/dibi.git
synced 2025-08-06 14:16:39 +02:00
- BC change: DibiResult::fetchAll() returns always multidimensional arrays (for single columns use fetchPairs() instead)
- added DibiTable::insertOrUpdate() - new modifier %by
This commit is contained in:
@@ -259,12 +259,11 @@ class DibiFluent extends DibiObject
|
||||
* Fetches all records from table.
|
||||
* @param int offset
|
||||
* @param int limit
|
||||
* @param bool simplify one-column result set?
|
||||
* @return array
|
||||
*/
|
||||
public function fetchAll($offset = NULL, $limit = NULL, $simplify = TRUE)
|
||||
public function fetchAll($offset = NULL, $limit = NULL)
|
||||
{
|
||||
return $this->execute()->fetchAll($offset, $limit, $simplify);
|
||||
return $this->execute()->fetchAll($offset, $limit);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user