We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add .save command to Genji CLI
.save
Synopsis: .save ?badger? PATH
.save ?badger? PATH
Description: Write database into PATH
Usage:
# run in memory database genji # or on-disk database genji my.db
genji> CREATE TABLE foo; genji> INSERT INTO foo(a) VALUES (1); genji> .save foo.db genji> .save badger foo
$ ls my.db foo.db foo/
Calling .save on an existing database file or path overwrites it.
The text was updated successfully, but these errors were encountered:
cc @jhchabran, pinging you so I can assign you
Sorry, something went wrong.
You can assign me now 👍
jhchabran
Successfully merging a pull request may close this issue.
Add
.save
command to Genji CLISynopsis:
.save ?badger? PATH
Description: Write database into PATH
Usage:
Calling .save on an existing database file or path overwrites it.
The text was updated successfully, but these errors were encountered: