Beispiel #1
0
 /**
  * Kill cached query results.
  *
  * @since 0.71
  */
 public function flush()
 {
     $this->last_result = array();
     $this->col_info = null;
     $this->last_query = null;
     $this->rows_affected = $this->num_rows = 0;
     $this->last_error = '';
     if ($this->dbh) {
         $this->dbh->flush();
     }
 }