コード例 #1
0
ファイル: Select.php プロジェクト: gamernetwork/yolk-database
 public function __construct(DatabaseConnection $db)
 {
     parent::__construct($db);
     $this->cols = [];
     $this->distinct = false;
     $this->from = '';
 }
コード例 #2
0
ファイル: Insert.php プロジェクト: gamernetwork/yolk-database
 public function __construct(DatabaseConnection $db)
 {
     parent::__construct($db);
     $this->ignore = false;
     $this->into = '';
     $this->columns = [];
     $this->values = [];
 }
コード例 #3
0
ファイル: Delete.php プロジェクト: gamernetwork/yolk-database
 public function __construct(DatabaseConnection $db)
 {
     parent::__construct($db);
     $this->from = '';
 }
コード例 #4
0
ファイル: Update.php プロジェクト: gamernetwork/yolk-database
 public function __construct(DatabaseConnection $db)
 {
     parent::__construct($db);
     $this->table = '';
     $this->set = [];
 }