Releases: skipperbent/pixie
Releases · skipperbent/pixie
Version 2.0.9
Sorry, something went wrong.
No results found
Version 2.0.8
Sorry, something went wrong.
No results found
- Optimisations + bugfixes.
Version 2.0.7
Sorry, something went wrong.
No results found
- Added support for subQueries in where statements - plus better handling of Raw objects in where statements:
Example:
$qb->where($qb->subQuery($subQuery), '!=', 'value')
Version 2.0.6
Sorry, something went wrong.
No results found
- Fixed table subquery no longer working.
Version 2.0.5
Sorry, something went wrong.
No results found
- Added support for custom table prefixes/aliases.
Very basic example:
$query->addPrefix('post', 'child');
$query->where('id', '=', 2);
Will output:
SELECT * FROM post AS child WHERE id = 2
Version 2.0.4
Sorry, something went wrong.
No results found
- Using where() with false boolean value on PHP 5.6 causes query to be invalid.
Version 2.0.3
Sorry, something went wrong.
No results found
Version 2.0.2
Sorry, something went wrong.
No results found
- Added closure check in where method.
Version 2.0.1
Sorry, something went wrong.
No results found
- Added support for all events (event-*)
- Fixed notices
- Added support for not defining table.
- If null is used as value if not in where method - whereNull will now be used.