close() публичный Метод

Some databases require a cursor to be closed before executing another statement/opening a new cursor.
public close ( ) : void
Результат void
Пример #1
0
 /**
  * Closes the underlying cursor (needed for some databases).
  *
  * @return void
  */
 public function close()
 {
     $this->cursor->close();
 }