コード例 #1
0
ファイル: Table.php プロジェクト: BackupTheBerlios/naf-svn
 private function ensureConnection()
 {
     if ($this->connection) {
         return;
     }
     if (self::$defaultConnection) {
         $this->connection = self::$defaultConnection;
         return;
     }
     Naf::dbConnect();
     self::setDefaultConnection(Naf::$pdo);
     $this->connection = self::$defaultConnection;
 }