waryway / mysql-query-builder
A object based query builder
dev-master
2019-09-08 16:42 UTC
Requires
- php: ^7.3
- waryway/php-logger: 0.0.3
Requires (Dev)
- phpunit/phpunit: 6.4.3
This package is auto-updated.
Last update: 2025-03-09 13:48:34 UTC
README
Object based query builder - because ORM's aren't always the right answer.
instructions
- do the composer thing.
- Build queries how almost you normally would - just dump them into the QueryObject.
example
The following example builds a simple query. More specific examples can be found in the QueryObject test!
$queryString = 'select * from some_table where some_table.sky = \'blue\';';
$rawQuery = new QueryObject();
$rawQuery->BuildAdd($queryString);
$rawQuery->toSql(),