Ejemplo n.º 1
0
 /**
  * Free resource
  *
  * @return boolean
  */
 public function free()
 {
     if ($this->result) {
         $this->adapter->free($this->result);
         $this->result = null;
     }
 }
Ejemplo n.º 2
0
 public function createSchema($schema)
 {
     $schema = $this->formatSchema($schema);
     $this->adapter->createSchema($schema);
 }