- https://www.sqlite.org/vtab.html
- https://github.com/asg017/sqlite-vec/
- https://github.com/unum-cloud/usearch/blob/main/sqlite/README.md
.load target/debug/libvsag_sqlite.dylib
CREATE VIRTUAL TABLE log USING vtablog(
schema='CREATE TABLE x(a,b,c)',
rows=25
);
SELECT * FROM log;
insert into log(a, b, c) values (1,2,3);