コード例 #1
0
ファイル: sql_tbd.php プロジェクト: pdelbar/onethree
 /**
  * Class constructor
  * Note: used to accept strings, pass One_Repository::getScheme($string) instead
  *
  * @param One_Scheme $scheme
  */
 public function __construct(One_Scheme $scheme)
 {
     parent::__construct($scheme);
     $this->clauseContainer = new One_Query_Condition_Container($this, 'AND');
     $this->havingContainer = new One_Query_Condition_Container($this, 'AND');
 }