HackerTrans
TopNewTrendsCommentsPastAskShowJobs

amjith

no profile record

comments

amjith
·8 anni fa·discuss
Thank you for the kind words. It's always nice to hear from happy customers .
amjith
·8 anni fa·discuss
Thank you, Simon. That means a lot coming from the author of datasette. I love your work.
amjith
·8 anni fa·discuss
Damn it! :)
amjith
·8 anni fa·discuss
We don't support all of the special commands but we do support a small subset of them. We support .mode .schema, .table and a few others.
amjith
·8 anni fa·discuss
Haha. No.

We have a large set of tests, but the coverage is no where close to the level that SQLite has.
amjith
·8 anni fa·discuss
DBCLI (https://www.dbcli.com/) is an open source org that made pgcli, mycli, mssql-cli etc.

LiteCLI is part of that org. So you can think of it as a clone of mycli that happens to work with SQLite.

The code base is largely similar between mycli and litecli. The changes are to support the SQLite backend and to support the dot commands (like .tables, .mode etc).

So the feature set should be same.

The DBCLI tools are not created by a single individual (anymore). We have a team of core devs and the lead maintainer for pgcli, mycli and litecli are all different people.
amjith
·8 anni fa·discuss
I have a few recommendations for you.

We use `less -XRF` by default. You can change this to whatever you want via the config file `~/.config/litecli/config`. Just uncomment the line that says `# pager = "less -SXRF".

Adding the `-S` to the list of options will make it much better. It will not wrap long lines but instead it will enable horizontal scrolling (using arrow keys). Check for pager section on this page for some details: https://litecli.com/output/

The other option is to set the `auto_vertical_output = True` in the config file.

This option will cause results to be displayed vertically if they are too wide for the current window.