Name
load_extension() — Load a dynamically linked SQLite extension
Common Usage
load_extension(extension) load_extension(extension,entry_point)
Description
The load_extension() function attempts to load and
dynamically link the file
as an SQLite extension. The function named extension
is called to initialize the extension. If entry_point
is not provided, it is assumed to be entry_point
sqlite3_extension_init. Both
parameters should be text values.
This SQL function is a wrapper around
the C function sqlite3_load_extension(), and has all of the
same limitations and conditions. In specific, extensions loaded
this way cannot redefine or delete function definitions.
See Also
sqlite3_load_extension() [C API, Ap G]
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access