Skip to content

paulfitz/visql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

visql

Edit slices of SQL tables in vi. Just specify a table and any filters you want to apply, and the table will show up in vi in csv format. Any edits you make will be applied back to the original source.

demo

Install

To edit local Sqlite databases, just do:

pip install visql

For PostgreSQL or MySQL support, add catsql[postgres] or catsql[mysql]:

pip install visql catsql[mysql]
pip install visql catsql[postgres]

For other databases, just install the appropriate SQLAlchemy dialect.

Use

visql test.sqlite3
visql test.sqlite3 --table users
visql postgres[ql]://user:pass@host/db --table users
visql mysql://user:pass@host/db --table users
visql test.sqlite3 --table users --grep paul
visql test.sqlite3 --table comments --sql "length(txt) < 40"

For all filters, see https://github.com/paulfitz/catsql#examples

About

edit slices of SQL databases in vi

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published