From 406befa0cb51cb2bae6bac235c4808e4cb27635f Mon Sep 17 00:00:00 2001 From: Maximilian Berens Date: Sun, 26 Apr 2020 16:53:46 +0200 Subject: [PATCH] Small changes to the readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 364697f..e1f1b39 100644 --- a/README.md +++ b/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.