예제 #1
0
파일: Query.php 프로젝트: andho/simdal
 /**
  * 
  * @param string $column
  * @return SimDAL_Query_OrderBy
  */
 public function orderBy($column)
 {
     $column = $this->_from->getColumn($column);
     $this->_orderBy = new SimDAL_Query_OrderBy($column, $this);
     return $this->_orderBy;
 }
예제 #2
0
파일: Join.php 프로젝트: andho/simdal
 public function getRightValue()
 {
     return new SimDAL_Query_Where_Column($this->_entity->getTable(), $this->_entity->getColumn($this->_descendant->getParentKey()));
 }