Popularity
5.0
Stable
Activity
0.0
Stable
22
3
2

Programming language: Crystal
License: MIT License
Tags: Database Tools    
Latest version: v0.8.2

queryit alternatives and similar shards

Based on the "Database Tools" category.
Alternatively, view queryit alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of queryit or a related project?

Add another 'Database Tools' Shard

README

Build Status AUR

Queryit

A very basic setupless terminal based SQL query runner meant to be used as a developer tool to test queries against a project database.

[Screenshot](./doc/queryit.png)

Installation

if ArchLinux

There's an AUR package for it.

$ yay -S queryit

else

$ make
$ sudo make install

Usage

On a rails or amber project directory just run it, a connection will be made to the development database:

$ queryit

Or specify the database URI:

$ queryit --uri postgres://localhost/database

Database support

Despite of only be really tested with Postgres and SQLite, it should work with MySQL too.

Contributing

  1. Fork it (https://github.com/hugopl/queryit/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Feature suggestions are welcome, write them in github issues.

Contributors