Is there any Online Web Tool that Convert mySQL Query To Zend FrameWork Query. that is i type mySql Query and the Tool Convert it to Zend FrameWork equivalent Query
相关问题
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
- mySQL alter table on update, current timestamp
You don't need a tool for this. Within Zend Framework's Zend_Db, component, you can do:
If
$sql
is a select, then you can retrieve the data with:Alternatively, ZF is just a PHP framework, so there's nothing stopping you continuing to use
PDO
ormysqli
directly.