Can you ELI5, how did you make this possible? I see the readme asking to download a binary and then also mentioning sqlite extension. I have never had exp with sqlite ext, so not quite sure how do they work. Appreciate how does this solution work under the hood.
dgllghr|2 years ago
* custom functions, including aggregate functions, window functions, and scalar functions: https://sqlite.org/appfunc.html
* virtual tables: https://sqlite.org/appfunc.html (This is how stanchion and other extensions like FTS and sqlite-vss are implemented)
* table valued functions (also implemented through the virtual table mechanism)
* virtual file systems: https://www.sqlite.org/vfs.html
It's really impressive how extensible SQLite is, and it's the power of that extensibility that makes stanchion possible.