Introduction
- sqlite is my favorite database (beginner - intermediate) anthony explains β’ Anthony Writes Code πΊ
General
- SQLite Docs β’ SQLite π
- Installing on macOS:
- It comes preinstalled (just type
sqlite3
in a terminal) - How to install SQLite on macOS β’ Flavio Copes π
- It comes preinstalled (just type
- Tools:
- sqlite-utils: a nice way to import data into SQLite for analysis β’ Julia Evans π
Using in production
- Possible to use SQLite as remote DB accessed by multiple clients over a network?
Inbox
-
thenorthbay/doculite β’ Use SQLite as a Document Database.
-
Websites Using SQLite in Production β Podcast and Interviews
-
Command Line Shell For SQLite - CLI docs, including how to import CSV to your db
-
Practical SQLite Commands That You Donβt Want To Miss - includes how to save an sql query to a file and then execute that query
-
Query Language Understood by SQLite - uses diagrams to explain the SQL dialect SQLite understands
-
Import a CSV File Into an SQLite Table β’ SQLite Tutorial π
-
Better to read/write throughout program? Or read data into memory at startup and then pass the in-memory data around via pure functions?
-
SQLite On The Command Line: How To Inspect A DB - SQLite Land
-
sqlite: Running SQL Queries from a β.sqlβ file in NodeJS (SQLite) | by Theo Okafor | Level Up Coding - use
fs.readFileSync
to load SQL queries from*.sql
files -
sqlite: node.js - Backup database - Stack Overflow - when using node
sqlite3
library, backup like this:db.backup('backup.db', () => callback())
-
sqlite: SQLite3 Editor - Visual Studio Marketplace - vs code extension thatβs really great; allows manual edits like a spreadsheet + previewing the result of queries + lots of other tools like importing/exporting as csv and table manipulation
-
sqlite: Using SQLite with Next.js 13
-
sqlite: Using SQLite with Next.js 13
-
GitHub - sql-js/sql.js: A javascript library to run SQLite on the web.
-
DHH discusses SQLite (and Stoicism) β’ Describing the benefits of using SQLite in production β’ Aaron Francis πΊ
-
High Performance SQLite β’ SQLite video course β’ Aaron Francis π§βπ
-
dbcli/litecli - CLI for SQLite Databases with auto-completion and syntax highlighting