コード例 #1
0
ファイル: resultset.class.php プロジェクト: Altreus/phpdbic
 public function __construct(Schema $s, TableDef $td)
 {
     $this->schema = $s;
     $this->td = $td;
     $this->records = array();
     # TODO: query class
     $this->query = array(sprintf("SELECT `%s` FROM `%s`", $td->pk_col(), $td->table_name()), array());
 }
コード例 #2
0
ファイル: testtable.class.php プロジェクト: Altreus/phpdbic
 public function __construct()
 {
     $cols = array("id" => array("data_type" => "integer", "is_pk" => 1, "is_ai" => 1, "is_nullable" => 0), "charfield" => array("data_type" => "varchar", "size" => 255, "is_nullable" => 0), "textfield" => array("data_type" => "text", "is_nullable" => 0), "datefield" => array("data_type" => "date", "is_nullable" => 0), "dtfield" => array("data_type" => "datetime", "is_nullable" => 0));
     parent::__construct('testtable', $cols);
 }