示例#1
0
 /**
  * @return PdoSqlite
  */
 public function getDb()
 {
     if ($this->db === null) {
         $databaseFile = $this->configParams->getAppDatabaseFile();
         $this->db = new PdoSqlite($databaseFile);
     }
     return $this->db;
 }