diff --git a/pages/common/sqlite3.md b/pages/common/sqlite3.md new file mode 100644 index 000000000..13ac4dca6 --- /dev/null +++ b/pages/common/sqlite3.md @@ -0,0 +1,15 @@ +# sqlite3 + +> The command-line interface to SQLite 3, which is a self-contained file-based embedded SQL engine. + +- Start an interactive shell with a new database: + +`sqlite3` + +- Open an interactive shell against an existing database: + +`sqlite3 {{path/to/database.sqlite3}}` + +- Execute an SQL statement against a database and then exit: + +`sqlite3 {{path/to/database.sqlite3}} '{{SELECT * FROM some_table;}}'`