VoodOrm icon indicating copy to clipboard operation
VoodOrm copied to clipboard

VoodOrm is a micro-ORM which functions as both a fluent select query API and a CRUD model class. VoodOrm is built on top of PDO and is well fit for small to mid-sized projects, where the emphasis is o...

Results 6 VoodOrm issues
Sort by recently updated
recently updated
newest added

Hi there, when creating a custom select using distinct the resulting SQL is invalid: `'SELECT *, DISTINCT ...'` This takes place due to the reset that is called in the...

VoodOrm.php on line 1252 there is a problem with: ``` php $prop = array_merge($_def, $args); ``` It doesn't merge arrays correctly. In __call(), $args is considered to be an array...

Right now, with current left join syntax, it seems like the FULL join table is appended to the query result. Well, what if this table is HUGE and you only...

The documents for left-join are very sparse. ``` SELECT vm.hostname, vm.description, vmr.date, vmr.comment, vmr.user FROM virtual_machine AS vm LEFT JOIN vm_registration AS vmr ON vm.id = vmr.id WHERE vm.deleted =...