Ejemplo n.º 1
0
 /**
  * Frees memory
  *
  * @return boolean value / void
  */
 public function free()
 {
     return FALSE;
     if ($this->PDO) {
         return $this->Rs ? $this->Rs->closeCursor() : FALSE;
     }
     if ($this->db["dbDriver"] === "pgsql") {
         return FALSE;
     }
     return $this->Rs ? $this->Rs->free() : FALSE;
 }
Ejemplo n.º 2
0
Archivo: db.php Proyecto: no2key/ZanPHP
 /**
  * Frees memory
  *
  * @return boolean value / void
  */
 public function free()
 {
     if ($this->PDO) {
         return $this->Rs ? $this->Rs->closeCursor() : FALSE;
     }
     return $this->Rs ? $this->Rs->free() : FALSE;
 }