예제 #1
0
파일: Update.php 프로젝트: JeCat/framework
 public function data($sColumnName)
 {
     $arrRawSet =& $this->rawClause(SQL::CLAUSE_SET);
     if (isset($arrRawSet['subtree'][$sColumnName])) {
         return SqlCompiler::singleton()->compile($arrRawSet['subtree'][$sColumnName]['subtree']);
     }
 }
예제 #2
0
파일: SQL.php 프로젝트: JeCat/framework
 /**
  * @return parser\SqlCompiler
  */
 public static function compiler()
 {
     return compiler\SqlCompiler::singleton();
 }