xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_extended_result_codes.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_EXTENDED_RESULT_CODES 3
3.Os
4.Sh NAME
5.Nm sqlite3_extended_result_codes
6.Nd enable or disable extended result codes
7.Sh SYNOPSIS
8.In sqlite3.h
9.Ft int
10.Fo sqlite3_extended_result_codes
11.Fa "sqlite3*"
12.Fa "int onoff"
13.Fc
14.Sh DESCRIPTION
15The sqlite3_extended_result_codes() routine enables or disables the
16extended result codes feature of SQLite.
17The extended result codes are disabled by default for historical compatibility.
18.Sh IMPLEMENTATION NOTES
19These declarations were extracted from the
20interface documentation at line 2517.
21.Bd -literal
22SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
23.Ed
24