Small changes to the readme
This commit is contained in:
parent
867a3bb1c0
commit
406befa0cb
12
README.md
12
README.md
|
@ -51,10 +51,10 @@ Some configuration outside the console arguments is stored in the file `beedb.in
|
|||
|
||||
## Non-SQL Commands
|
||||
|
||||
* `:explain [plan,graph]`: prints the query plan, either as a table or a graph (a list of nodes and edges)
|
||||
* `:get [option-name]`: prints either all or the secified option of the database configuration
|
||||
* `:set option-name numerical-value`: changes the specified option. Only numerical values are valid
|
||||
* `:show [tables,indices,columns]`: A quick way to show available tables, their columns or indices
|
||||
* `:explain [plan,graph]`: Prints the query plan, either as a table or graph (a list of nodes and edges).
|
||||
* `:get [option-name]`: Prints either all (when no additional argument is given) or the specified option of the database configuration.
|
||||
* `:set option-name numerical-value`: Changes the specified option. Only numerical values are valid.
|
||||
* `:show [tables,indices,columns]`: A quick way to show available tables, their columns or indices.
|
||||
|
||||
## Examples
|
||||
|
||||
|
@ -62,13 +62,13 @@ Some configuration outside the console arguments is stored in the file `beedb.in
|
|||
`./beedb -l movies.sql`
|
||||
|
||||
##### Run a single query
|
||||
`./beedb -q "SELECT * FROM movie;"`
|
||||
`./beedb -q "SELECT * FROM movie"`
|
||||
|
||||
##### Open the BeeDB Console
|
||||
`./beedb`
|
||||
|
||||
##### Run a query and open console afterwards
|
||||
`./beedb -q "SELECT * FROM movie;" -c`
|
||||
`./beedb -q "SELECT * FROM movie" -c`
|
||||
|
||||
# For developers
|
||||
* If you want to commit to the repository please `make git-hook` before commit.
|
||||
|
|
Loading…
Reference in New Issue