PHP 8.5.10 Released!

SQLite3::lastExtendedErrorCode

(PHP 7 >= 7.4.0, PHP 8)

SQLite3::lastExtendedErrorCode Returns the numeric extended result code of the most recent failed SQLite request

Описание

public function SQLite3::lastExtendedErrorCode(): int

Returns the numeric extended result code of the most recent failed SQLite request. Unlike SQLite3::lastErrorCode(), this method always returns the extended result code, whether or not extended result codes have been enabled with SQLite3::enableExtendedResultCodes().

Список параметров

Сигнатура функции не содержит параметров.

Возвращаемые значения

Returns an integer value representing the numeric extended result code of the most recent failed SQLite request.

Смотрите также

  • SQLite3::enableExtendedResultCodes() - Enables or disables the use of extended result codes
  • SQLite3::lastErrorCode() - Возвращает числовой код результата последнего неудачного запроса SQLite
  • SQLite3::lastErrorMsg() - Возвращает текст на английском, описывающий последний неудачный запрос SQLite
Добавить

Примечания пользователей

Пользователи ещё не добавляли примечания для страницы
To Top