*** DRAFT ***

Here is what you do to start experimenting with SQLite without having to do a lot of tedious reading and configuration:

Download The Code

Create A New Database Using The Command Line Interface

The Command Line Interface or "CLI" is a simple command-line program that accepts SQL input text and passes it through to the SQLite database engine core to be executed. The name of the CLI program is "sqlite3" (or "sqlite3.exe" on Windows). Use the CLI for manual interactions with a database.

A WASM build of the CLI that runs in your web-browser is available at https://sqlite.org/fiddle.

Write Programs That Use SQLite

This page last modified on 2024-07-25 15:06:57 UTC

*** DRAFT ***