sqlite-vec/examples/sqlite3-cli/README.md

10 lines
438 B
Markdown
Raw Normal View History

2024-04-20 13:38:58 -07:00
# `sqlite-vec` statically compiled in the SQLite CLI
2024-07-31 12:55:20 -07:00
You can compile your own version of the `sqlite3` CLI with `sqlite-vec` builtin.
The process is not well documented, but the special `SQLITE_EXTRA_INIT` compile
option can be used to "inject" code at initialization time. See the `Makefile`
at the root of this project for some more info.
2024-04-20 13:38:58 -07:00
2024-07-31 12:55:20 -07:00
The `core_init.c` file here demonstrates auto-loading the `sqlite-vec`
entrypoints at startup.