bfdumpdb
v1.0.1
Published
Dump SQLite tables to JSON
Readme
Dump the first 10 rows of all tables to out.json
bfdumpdb test.db --limit 10 > out.jsonDump all rows of the USERS and ROLES table to out.json
bfdumpdb test.db USERS ROLES > out.jsonDump the first 10 rows of the USERS and ROLES table to out.json
bfdumpdb test.db USERS ROLES --limit 10 > out.json