~desarrollokumbia/kumbia/ActiveRecord

Viewing all changes in revision 30.

  • Committer: Deivinson Tejeda
  • Date: 2010-01-24 19:35:42 UTC
  • Revision ID: deivinsontejeda@gmail.com-20100124193542-32qp0cepu3d2pgsg
1->Se pasa el ResultSet para el mismo ActiveRecord para implementar el Iterator
2->En DbQuery se agrega método whereAnd y whereOr
3->En DbQuery se agregar método bind() para enlazar los parámetros para las consultas preparadas y getBind() para obetener esos parámetros cuando se ejecuta el query
4->DbAdapter se ajusta en el _joinClausules() para los where's
Eje. Modelo
    public function get()
    {
        $this->get()->whereAnd(array('id < :id2', 'id > :id'))
                    ->bind(array(':id'=>2, ':id2'=>5));//aki se enlazan los parámetros
        return $this->find();
    }

expand all expand all

Show diffs side-by-side

added added

removed removed

Lines of Context: