I have an application using Zend Framework, in structure MVC, I want to know where the query queries are made to the bank, I'm a little lost because I've never worked with Zend. In my model I instantiate, for example:
class Cursos extends Zend_Db_Table{
protected $_name = 'cursos';
}
but the query itself:
select * from cursos
Where is it?