Yii X Procedures

Hello friends

I Would like to know whether Yii works using mysql procedures? There are article about?

You can call them using DAO. I once wrote a site that read data from views and only called procedures to insert/update data but I much rather use Active Records.

Thank you

I have one more question

which makes more rapid application, work using Procedures or Active Record?

Nowadays I use Active Record

Definetly ActiveRecord. Procedures should be used when you need to move your business logic inside the database so it can be shared between more than one application.

Thank you