__construct() public method

public __construct ( )
コード例 #1
0
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
     TActiveRecordManager::getInstance()->setDbConnection($this->getConnection());
     //$this->initScript('account-init.sql');
 }
コード例 #2
0
ファイル: CacheTest.php プロジェクト: Nurudeen/prado
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
     //force autoload
     new Account();
 }
コード例 #3
0
ファイル: ResultMapTest.php プロジェクト: pradosoft/prado
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
     new Order();
     new LineItemCollection();
     new Account();
 }
コード例 #4
0
ファイル: SelectKeyTest.php プロジェクト: Nurudeen/prado
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
     //force autoload
     new Account();
     new Order();
     new LineItem();
     new LineItemCollection();
     new A();
     new B();
     new C();
     new D();
     new E();
     new F();
 }
コード例 #5
0
ファイル: InheritanceTest.php プロジェクト: pradosoft/prado
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
     $this->initScript('documents-init.sql');
 }
コード例 #6
0
ファイル: GroupByTest.php プロジェクト: Nurudeen/prado
 function __construct()
 {
     parent::__construct();
     $this->initSqlMap();
 }