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/vtab_config.html | 145 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 www/c3ref/vtab_config.html (limited to 'www/c3ref/vtab_config.html') diff --git a/www/c3ref/vtab_config.html b/www/c3ref/vtab_config.html new file mode 100644 index 0000000..acc4d7f --- /dev/null +++ b/www/c3ref/vtab_config.html @@ -0,0 +1,145 @@ + + + + + +Virtual Table Interface Configuration + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Virtual Table Interface Configuration

+
+
+int sqlite3_vtab_config(sqlite3*, int op, ...);
+
+

+This function may be called by either the xConnect or xCreate method +of a virtual table implementation to configure +various facets of the virtual table interface.

+ +

If this interface is invoked outside the context of an xConnect or +xCreate virtual table method then the behavior is undefined.

+ +

In the call sqlite3_vtab_config(D,C,...) the D parameter is the +database connection in which the virtual table is being created and +which is passed in as the first argument to the xConnect or xCreate +method that is invoking sqlite3_vtab_config(). The C parameter is one +of the virtual table configuration options. The presence and meaning +of parameters after C depend on which virtual table configuration option +is used. +

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

+ -- cgit v1.2.3