From 18657a960e125336f704ea058e25c27bd3900dcb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 19:28:19 +0200 Subject: Adding upstream version 3.40.1. Signed-off-by: Daniel Baumann --- www/c3ref/db_readonly.html | 134 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 www/c3ref/db_readonly.html (limited to 'www/c3ref/db_readonly.html') diff --git a/www/c3ref/db_readonly.html b/www/c3ref/db_readonly.html new file mode 100644 index 0000000..a744760 --- /dev/null +++ b/www/c3ref/db_readonly.html @@ -0,0 +1,134 @@ + + + + + +Determine if a database is read-only + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Determine if a database is read-only

+
+
+int sqlite3_db_readonly(sqlite3 *db, const char *zDbName);
+
+

+The sqlite3_db_readonly(D,N) interface returns 1 if the database N +of connection D is read-only, 0 if it is read/write, or -1 if N is not +the name of a database on connection D. +

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

+ -- cgit v1.2.3