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