Bella: PHP variant of Arel
I finally feel comfortable pushing my query library to the Github. It still needs a ton of work but I am all ears for suggestions and help. Check out ...
Software Engineer, Amateur Woodworker & Astronomer
3 posts found
I finally feel comfortable pushing my query library to the Github. It still needs a ton of work but I am all ears for suggestions and help. Check out ...
```php // Chaining methods $short = $users['completed']->count()->to_sql(); // Expanded version $node = new NodeSQLLiteral('users.completed'); $coun...
```php $query = new QueryTable('users'); $query->where($query['first_name'] ->eq('john'))->where($query['last_name']->not_eq('doe')); echo $q...