Пример #1
0
 protected function db()
 {
     if ($this->db === null) {
         $this->db = DbConnection::fromResourceName($this->settings['resource'])->getDbAdapter();
     }
     return $this->db;
 }
Пример #2
0
 protected function db()
 {
     if ($this->db === null) {
         $this->db = DbConnection::fromResourceName($this->settings['resource'])->getDbAdapter();
         // TODO: should be handled by resources:
         $this->db->exec("SET NAMES 'utf8'");
     }
     return $this->db;
 }