SQLite
Backlinks
- 2021-08-09
- This week, James Long wrote about and released absurd-sql, an implementation of SQLite based on SQL.js (actual sqlite compiled to WASM) and a backend that works on IndexedDB and is faster than IndexedDB.
- 2021-05-15
- 2021-05-02
- phiresky has wired up SQL.js to a static SQLite file via HTTP range queries and that is some fancy SQLite magic.
- 2021-04-11
- Squirrelbyte is an open source document/search server backed by SQLite. The server is written in Go and it has a UI in React for running queries.
- 2020-04-16
- Simon Willison posited that SQL is a better API language than GraphQL and the conversation that followed was quite interesting with good points coming up in favor of using SQL (you can create virtual tables that are not backed by the DB at all) and also GraphQL. Simon’s coming at this from the perspective of read only APIs, and he has been largely working with APIs that are backed by SQLite. Also cool that you can create custom functions for SQLite in Python