示例#1
0
 /**
  * Frees the memory associated with a result
  * @return bool
  *   Returns TRUE on success or FALSE on failure.
  */
 public function free()
 {
     if (is_resource($this->query)) {
         return $this->dbObj->free_result($this->query);
     }
     return TRUE;
 }