针对于Linux系统,基本是不需要安装的,大都Linux系统已经默认安装了该数据库软件。在网站PrecompiledBinaries for Windows有 sqlite-tools-win32-*.zip 和 sqlite-dll-win32-*.zip两个压缩文件。
sql.js is a port of SQLite to Webassembly, by compiling the SQLite C code with Emscripten. It uses a virtual database file stored in memory, and thus doesn't persist the changes made to the database. However, it allows you to import any existing sqlite file, and to export the created database as a JavaScript typed array.
SQLite 3.37.2下载网址:见原文链接。创建exe文件:cl -Os -O2 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_RTREE -DSQLITE_ENABLE_COLUMN_METADATA shell.c sqlite3.c -Fesqlite3.exe。