The SQLITE_STMT Virtual Table
(stmt.html)
1. Overview
... The SQLITE_STMT extension can also be
loaded at run-time
by compiling the extension into a shared library or DLL using the source
code at https://sqlite.org/src/file/ext/misc/stmt.c and following the
instructions for how ...
|
The Percentile Extension
(percentile.html)
4. Design Requirements
... The percentile(Y,P) is implemented as a single C99 source-code
file that compiles into a shared-library or DLL that can be loaded
into SQLite using the sqlite3_load_extension() interface.
A separate median(Y) function is the equivalent percentile ...
|
SQLite Archive Files
(sqlar.html)
2. Advantages Of SQLite Archives
... An SQLite Archive can work around firewall-imposed censorship.
For example, certain file types that are considered "dangerous"
(examples: DLLs) will be
blocked by Gmail
and probably many other email services and firewalls, even if the
files are wrapped inside ...
|
An Introduction To The SQLite C/C++ Interface
(cintro.html)
8. Extending SQLite
... Shared libraries or DLLs can be used as loadable extensions to SQLite.
|
Command Line Shell For SQLite
(cli.html)
11. Loading Extensions
... First, build the
extension as a DLL or shared library (as described in the
Run-Time Loadable Extensions document) then type:
sqlite> .load /path/to/my_extension
Note that SQLite automatically adds the appropriate extension suffix
(".dll" on windows, ".dylib ...
|
SQLite Changes From Version 3.4.2 To 3.5.0
(34to35.html)
... The
xDlOpen method opens a shared library or DLL and returns a pointer to
a handle. NULL is returned if the open fails. If the open fails,
the xDlError method can be used to obtain a text error message.
The ...
|
Page generated by FTS5 in about 14.77 ms.