Releases: skipperbent/pixie
Releases · skipperbent/pixie
Version 2.0.9
- Fixed notices.
Version 2.0.8
- Optimisations + bugfixes.
Version 2.0.7
- Added support for subQueries in where statements - plus better handling of
Rawobjects in where statements:
Example:
$qb->where($qb->subQuery($subQuery), '!=', 'value')Version 2.0.6
- Fixed table subquery no longer working.
Version 2.0.5
- 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 = 2Version 2.0.4
- Using
where()with false boolean value on PHP 5.6 causes query to be invalid.
Version 2.0.3
- Optimisations.
Version 2.0.2
- Added closure check in where method.
Version 2.0.1
- 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.