Execute one or more SQL statements without returning results Used for DDL (CREATE TABLE, etc.) and DML without result rows
SQL statement(s) to execute
Load a SQLite extension from a file path
Absolute path to the extension file (.so, .dylib, .dll)
OptionalentryPoint: stringOptional entry point function name (default: sqlite3_extension_init)
Compile a SQL statement into a prepared statement
SQL statement with optional placeholders (?)
Prepared statement object
Minimal database interface compatible with multiple SQLite implementations.
Compatible libraries:
This interface defines only the methods actually used by sqlite-diskann. Any SQLite library providing these methods can be used.
Example