コード例 #1
0
ファイル: dbFacile.php プロジェクト: rctay/dbFacile
 function __construct($handle = null)
 {
     parent::__construct();
     $this->addQuotes = false;
     $this->schemaNameField = 'name';
     $this->schemaTypeField = 'type';
     if ($handle != null) {
         $this->connection = $handle;
     }
 }