SQLite3Stmt::readOnly()
(PHP 5 >= 5.3.6, PHP 7)
SQLite3Stmt::readOnly() — Returns whether a statement is definitely read only
Описание
public bool SQLite3Stmt::readOnly
( void
)
Returns whether a statement is definitely read only. A statement is considered read only, if it makes no direct changes to the content of the database file. Note that user defined SQL functions might change the database indirectly as a side effect.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns TRUE
if a statement is definitely read only, FALSE
otherwise.
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с базами данных
- Расширения для работы с базами данных отдельных производителей
- SQLite3
- Функция SQLite3Stmt::bindParam() - Binds a parameter to a statement variable
- Функция SQLite3Stmt::bindValue() - Binds the value of a parameter to a statement variable
- Функция SQLite3Stmt::clear() - Clears all current bound parameters
- Функция SQLite3Stmt::close() - Closes the prepared statement
- Функция SQLite3Stmt::execute() - Executes a prepared statement and returns a result set object
- Функция SQLite3Stmt::paramCount() - Returns the number of parameters within the prepared statement
- SQLite3Stmt::readOnly()
- Функция SQLite3Stmt::reset() - Resets the prepared statement
Коментарии
404 Not Found