~desarrollokumbia/kumbia/ActiveRecord

Viewing all changes in revision 33.

  • Committer: Emilio Silveira
  • Date: 2010-01-29 04:14:52 UTC
  • Revision ID: emilio.rst@gmail.com-20100129041452-j4m1abmva860c2yi
Cambios en DbQuery en su estructura interna y modificaciones necesarias 
en DbAdapter.


Adicionados a ActiveRecord, deleteAll y updateAll.

Ejemplos:

function eliminarCantidadMinima($minimo)
{
   $this->get()->where('cantidad < :minimo')->bind(':minimo' => 
$minimo);

   return $this->deleteAll();

}


function actualizarNumero()
{
   $this->get()->where('numero=5');
   return $this->updateAll(array('estado' => 'D'));
}

expand all expand all

Show diffs side-by-side

added added

removed removed

Lines of Context: