Updated: 2022/Sep/29

Please read Privacy Policy. It's for your privacy.


SQLITE3_SYSTEM_ERRNO(3)    Library Functions Manual    SQLITE3_SYSTEM_ERRNO(3)

NAME
     sqlite3_system_errno - low-level system error code

SYNOPSIS
     #include <sqlite3.h>

     int
     sqlite3_system_errno(sqlite3*);

DESCRIPTION
     Attempt to return the underlying operating system error code or error
     number that caused the most recent I/O error or failure to open a file.
     The return value is OS-dependent.  For example, on unix systems, after
     sqlite3_open_v2() returns SQLITE_CANTOPEN, this interface could be called
     to get back the underlying "errno" that caused the problem, such as
     ENOSPC, EAUTH, EISDIR, and so forth.

IMPLEMENTATION NOTES
     These declarations were extracted from the interface documentation at
     line 10321.

     SQLITE_API int sqlite3_system_errno(sqlite3*);

SEE ALSO
     sqlite3_open(3), SQLITE_OK(3)

NetBSD 10.99                    August 24, 2023                   NetBSD 10.99