/**
  * Frees database resources associated with a result resource returned from sasql_query.
  * @return boolean 			TRUE on success or FALSE on error.
  */
 public function freeResults()
 {
     return sasql_free_result($this->result);
 }
Esempio n. 2
0
 /**
  * Free the result
  *
  * @return	null
  */
 function free_result()
 {
     if (is_resource($this->result_id)) {
         sasql_free_result($this->result_id);
         $this->result_id = FALSE;
     }
 }
Esempio n. 3
0
 /**
  * Free results from last query
  */
 function db_free_result($qid = false)
 {
     return sasql_free_result($qid);
 }