Building a programming language using SQLite's VM - Pt 1
SQLite is cool. It’s the most deployed database in the world, it’s tiny, expressive and its architecture is quite different from traditional relational databases. SQLite uses a Virtual Machine (VM) called Virtual DataBase Engine (VDBE) to interpret SQL, rather than Volcano-style or vectorization . Do you know which other project uses VMs to interpret code? Lua , Java , Erlang and god…