Skip to content

Commit

Permalink
chore: postgres support on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Jun 20, 2024
1 parent 5270ba3 commit 4738069
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SQLite Studio

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

### Local SQLite DB File

Expand All @@ -14,6 +14,12 @@ sqlite-studio sqlite [sqlite_db]
sqlite-studio libsql [url] [auth_token]
```

### PostgreSQL Server

```bash
sqlite-studio postgres [url]
```

## Features

- Overview page with common metadata.
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ enum Command {
auth_token: String,
},

/// A postgresql database.
/// A PostgreSQL database.
Postgres {
/// postgresql connection url [postgresql://postgres:[email protected]/sample]
url: String,
Expand Down

0 comments on commit 4738069

Please sign in to comment.