I am creating an application that must have a MySQL query designer in OOP style. I want to be able to flexibly build complex queries using only PHP and get the final query string to execute using my own database driver.
Does anyone know of a good standalone query builder for PHP? Please note that I do not need a database driver. I need an empty builder MySQL query class (preferably written with a camel-style function and variable names).
source share