You do not need a tool for this. In the Zend Framework Zend_Db component, you can:
$stmt = $db->query($sql);
If $sqlthis is a choice, you can get the data with:
$rows = $stmt->fetchAll();
Alternatively, ZF is just a PHP framework, so you have nothing to keep using PDOor mysqli.
source
share