Skip to content

Commit

Permalink
docs: fix a bug in README (#206)
Browse files Browse the repository at this point in the history
The command will not work in bash or Bourne-compatible shell without quoting.
  • Loading branch information
alexey-milovidov authored Jun 7, 2024
1 parent c7126e7 commit 60d5388
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ $ dblab --host localhost --user system --db FREEPDB1 --pass password --port 1521
Connection URL scheme is also supported:

```sh
$ dblab --url postgres://user:password@host:port/database?sslmode=[mode]
$ dblab --url mysql://user:password@tcp(host:port)/db
$ dblab --url file:test.db?cache=shared&mode=memory
$ dblab --url oracle://user:password@localhost:1521/db
$ dblab --url 'postgres://user:password@host:port/database?sslmode=[mode]'
$ dblab --url 'mysql://user:password@tcp(host:port)/db'
$ dblab --url 'file:test.db?cache=shared&mode=memory'
$ dblab --url 'oracle://user:password@localhost:1521/db'
```

if you're using PostgreSQL, you have the option to define the schema you want to work with, the default value is `public`.
Expand Down

0 comments on commit 60d5388

Please sign in to comment.