~desarrollokumbia/kumbia/ActiveRecord

« back to all changes in this revision

Viewing changes to db_pool/rows.php

  • Committer: Deivinson Tejeda
  • Date: 2009-12-29 20:19:46 UTC
  • Revision ID: deivinsontejeda@gmail.com-20091229201946-1gp26mpeaman9a7f
arreglos en los atributos de la class Column y adecuando el adaptador de pgsql

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    {
20
20
        if (! isset($this->_columns[$col])) {
21
21
            $this->_columns[$col] = new Column();
22
 
            $this->_columns[$col]->_name = $col;
23
22
        }
24
23
        return $this->_columns[$col];
25
24
    }