Example #1
0
 /**
  * Retrieve a field object representing the specified column name.
  *
  * @param string $name
  * @return \Dewdrop\Db\Field
  */
 public function field($name)
 {
     $field = $this->table->field($name);
     $field->setRow($this);
     return $field;
 }