.Dd January 24, 2024
.Dt SQLITE3_EXTENDED_RESULT_CODES 3
.Os
.Sh NAME
.Nm sqlite3_extended_result_codes
.Nd enable or disable extended result codes
.Sh SYNOPSIS
.In sqlite3.h
.Ft int
.Fo sqlite3_extended_result_codes
.Fa "sqlite3*"
.Fa "int onoff"
.Fc
.Sh DESCRIPTION
The sqlite3_extended_result_codes() routine enables or disables the
extended result codes feature of SQLite.
The extended result codes are disabled by default for historical compatibility.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 2517.
.Bd -literal
SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
.Ed