I\'m recently have learned to use Zend Framework. I did a simple CRUD application. But now I want to use a existing database for a more complex application and I want to kno
$db = Zend_Db_Table::getDefaultAdapter(); $stmt = $db->query("CALL procedure()"); $data = $stmt->fetchAll();