From 63847496f14c813a5d80efd5b7de0f1294ffe1e3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 16:07:11 +0200 Subject: Adding upstream version 3.45.1. Signed-off-by: Daniel Baumann --- www/c3ref/system_errno.html | 137 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) create mode 100644 www/c3ref/system_errno.html (limited to 'www/c3ref/system_errno.html') diff --git a/www/c3ref/system_errno.html b/www/c3ref/system_errno.html new file mode 100644 index 0000000..561f9dc --- /dev/null +++ b/www/c3ref/system_errno.html @@ -0,0 +1,137 @@ + + + + + +Low-level system error code + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Low-level system error code

+
+
+int sqlite3_system_errno(sqlite3*);
+
+

+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. +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3