An interactive SQL REPL for RookDB — type SQL statements directly in your terminal.
brew install RookDB/tap/rookdb-clicurl --proto '=https' --tlsv1.2 -LsSf \
https://github.com/RookDB/rookdb-cli/releases/latest/download/rookdb-installer.sh \
| shirm https://github.com/RookDB/rookdb-cli/releases/latest/download/rookdb-installer.ps1 | iexOr download the .msi installer directly from the Releases page.
Requires Rust.
cargo install rookdb-clirookdb--------------------------------------
Welcome to RookDB
--------------------------------------
> CREATE DATABASE mydb;
> USE mydb;
> CREATE TABLE users (id INT NOT NULL, name VARCHAR(100));
> INSERT INTO users VALUES (1, 'Alice');
> SELECT * FROM users;
> exit
For the full user guide see the documentation.
- Bump the version in
Cargo.toml - Commit and tag:
git commit -am "release: v0.2.0"
git tag v0.2.0
git push && git push --tagsThe GitHub Actions release workflow automatically builds cross-platform binaries, generates all installers, publishes a GitHub Release, and updates the Homebrew formula.
Apache-2.0 — see LICENSE.