8000 GitHub - cloudnepal/sqlite-studio: SQLite database explorer
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cloudnepal/sqlite-studio

 
 

Repository files navigation

SQLite Studio

Single binary, single command SQLite database explorer. SQLite studio supports opening both local SQLite DB files, libSQL servers and PostgreSQL.

Local SQLite DB File

sqlite-studio sqlite [sqlite_db]

Remote libSQL Server

sqlite-studio libsql [url] [auth_token]

PostgreSQL Server

sqlite-studio postgres [url]

Features

  • Overview page with common metadata.
  • Tables page with each table's metadata, including the disk size being used by each table.
  • Infinite scroll rows view.
  • A custom query page that gives you more access to your db.

More features available on the releases page.

Screenshots

Home Page

homepage

Tables Page

tables infinite scroll

Query Page

query query gif

Installation

Install prebuilt binaries via shell script (MacOS and Linux)

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/frectonz/sqlite-studio/releases/download/0.1.8/sqlite-studio-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/frectonz/sqlite-studio/releases/download/0.1.8/sqlite-studio-installer.ps1 | iex"

Updating

sqlite-studio-update

Nix

nix shell github:frectonz/sqlite-studio

Contributing

Before executing cargo run you need to build the UI because the rust app statically embedded the UI files in the binary.

git clone git@github.com:frectonz/sqlite-studio.git
cd sqlite-studio
nix develop # if you use nix
cd ui
npm install
npm run build
cd ..
cargo run <sqlite_db>

About

SQLite database explorer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 50.8%
  • Rust 42.4%
  • Nix 2.5%
  • JavaScript 2.4%
  • CSS 1.3%
  • HTML 0.6%
0