A universal command-line interface for PostgreSQL, MySQL, Oracle Database, SQLite3, Microsoft SQL Server, and other SQL databases.
Installing | Using | Commands | Building | Database Support | Releases
usql provides a simple way of working with SQL databases via a command-line inspired by PostgreSQL's psql tool and has a few additional features that psql does not, such as syntax highlighting and context-based completion.
Database administrators and developers that would prefer to work with non-PostgreSQL databases with a tool like psql, will find usql intuitive, easy-to-use, and a great replacement for the command-line clients/tools available for other databases.
usql can be installed by via Release, via Go, or via Homebrew:
- Download a release for your platform
- Extract the
usqlorusql.exefile from the.tar.bz2or.zipfile - Move the executable to somewhere on your
$PATH(Linux/OSX) or%PATH%(Windows)
usql can be installed in the usual Go fashion:
# install usql with basic database support (includes PosgreSQL, MySQL, SQLite3, and MS SQL drivers) $ go get -u github.com/xo/usqlSupport for additional databases can be specified with build tags:
# install usql with most drivers (excludes drivers requiring CGO) $ go get -u -tags most github.com/xo/usql # install usql with all drivers (includes drivers requiring CGO, namely Oracle and ODBC drivers) $ go get -u -tags all github.com/xo/usqlusql is available in the xo/xo tap, and can be installed in the usual way with the brew command:
# add tap $ brew tap xo/xo # install usql with "most" drivers $ brew install usqlAdditional support for Oracle and ODBC databases can be installed by passing --with-* parameters during install:
# install usql with oracle and odbc support $ brew install --with-oracle --with-odbc usqlAfter installing, usql can be used similarly to the following:
# connect to a postgres database $ usql postgres://booktest@localhost/booktest # connect to an oracle database $ usql oracle://user:pass@host/oracle.sid # connect to a postgres database and run script.sql $ usql pg://localhost/ -f script.sqlusql opens a database connection by parsing a URL and passing the resulting connection string to the database driver. Database connection strings (aka "data source name" or DSNs) have the same parsing rules as URLs, and can be passed to usql via command-line, or via to the \connect or \c commands.
usql connection strings look like the following:
driver+transport://user:pass@host/dbname?opt1=a&opt2=b driver:/path/to/file /path/to/fileWhere the above are:
| Component | Description |
|---|---|
| driver | driver name or alias |
| transport | tcp, udp, unix or driver name (for ODBC and ADODB) |
| user | username |
| pass | password |
| host | hostname |
| dbname* | database name, instance, or service name/ID |
| ?opt1=a&... | database driver options (see respective SQL driver for available options) |
| /path/to/file | a path on disk |
* for Microsoft SQL Server, the syntax to supply an instance and database name is /instance/dbname, where /instance is optional. For Oracle databases, /dbname is the unique database ID (SID).
The same driver names and aliases from the dburl package. Please refer to the dburl documentation for supported aliases. All databases have a two character short form that is usually the first two letters of the database driver. For example, my for mysql, or for oracle, or sq for sqlite3.
Driver options are specified as standard URL query options in the form of ?opt1=a&obt2=b. Please refer to the relevant database driver's documentation for available options.
If a URL does not specify a driver scheme, usql will check if it is a path on disk. If the path exists, usql will attempt to use an appropriate database driver to open the path.
If the specified path is a Unix Domain Socket, usql will attempt to open it using the MySQL driver. If the path is a directory, usql will attempt to open it using the PostgreSQL driver. If the path is a regular file, usql will attempt to open the file using the SQLite3 driver.
The following are example connection strings and additional ways to connect to databases with usql:
# connect to a postgres database $ usql pg://user:pass@localhost/dbname $ usql pgsql://user:pass@localhost/dbname $ usql postgres://user:pass@localhost:port/dbname $ psql /var/run/postgresql # connect to a mysql database $ usql my://user:pass@localhost/dbname $ usql mysql://user:pass@localhost:port/dbname $ usql /var/run/mysqld/mysqld.sock # connect to a mssql (Microsoft SQL) database $ usql ms://user:pass@localhost/dbname $ usql mssql://user:pass@localhost:port/dbname # connect to a mssql (Microsoft SQL) database using Windows domain authentication $ runas /user:ACME\wiley /netonly "usql mssql://host/dbname/" # connect to a oracle database $ usql or://user:pass@localhost/dbname $ usql oracle://user:pass@localhost:port/dbname # connect to a sqlite database that exists on disk $ usql dbname.sqlite3 # NOTE: when not a "<driver>://" or "<driver>:" scheme, the file must # already exist; if it doesn't, please prefix with file:, sq:, sqlite3: or any # other sqlite3 driver alias recognized by the dburl package, and a new, empty # database will be created by the sqlite3 driver at that path: $ usql sq://path/to/dbname.sqlite3 $ usql sqlite3://path/to/dbname.sqlite3 $ usql file:/path/to/dbname.sqlite3 # connect to a adodb ole resource (windows only) $ usql adodb://Microsoft.Jet.OLEDB.4.0/myfile.mdb $ usql "adodb://Microsoft.ACE.OLEDB.12.0/?Extended+Properties=\"Text;HDR=NO;FMT=Delimited\""usql provides a command intrepreter that intreprets \ commands and sends SQL queries to a database similar to psql:
$ usql sqlite://example.sqlite3 Connected with driver sqlite3 (SQLite3 3.17.0) Type "help" for help. sq:example.sqlite3=> create table test (test_id int, name string); CREATE TABLE sq:example.sqlite3=> insert into test (test_id, name) values (1, 'hello'); INSERT 1 sq:example.sqlite3=> select * from test; test_id | name +---------+-------+ 1 | hello (1 rows) sq:example.sqlite3=> select * from test sq:example.sqlite3-> \p select * from test sq:example.sqlite3-> \g test_id | name +---------+-------+ 1 | hello (1 rows) sq:example.sqlite3=> \c postgres://booktest@localhost error: pq: 28P01: password authentication failed for user "booktest" Enter password: Connected with driver postgres (PostgreSQL 9.6.6) pg:booktest@localhost=> select * from authors; author_id | name +-----------+----------------+ 1 | Unknown Master 2 | blah 3 | aoeu (3 rows) pg:booktest@localhost=>usql recognizes backslash (\ ) commands similar to psql. Currently available commands:
$ usql Type "help" for help. (not connected)=> \? General \q quit usql \copyright show usql usage and distribution terms \drivers display information about available database drivers \g [FILE] or ; execute query (and send results to file or |pipe) \gexec execute query and execute each value of the result \gset [PREFIX] execute query and store results in usql variables Help \? [commands] show help on backslash commands \? options show help on usql command-line options \? variables show help on special variables Query Buffer \e [FILE] [LINE] edit the query buffer (or file) with external editor \p show the contents of the query buffer \r reset (clear) the query buffer \w FILE write query buffer to file Input/Output \echo [STRING] write string to standard output \i FILE execute commands from file \ir FILE as \i, but relative to location of current script Transaction \begin begin a transaction \commit commit current transaction \rollback rollback (abort) current transaction Connection \c URL connect to database with url \c DRIVER PARAMS... connect to database with SQL driver and parameters \Z close database connection \password [USERNAME] change the password for a user \conninfo display information about the current database connection Operating System \cd [DIR] change the current working directory \setenv NAME [VALUE] set or unset environment variable \! [COMMAND] execute command in shell or start interactive shell Variables \prompt [TEXT] NAME prompt user to set internal variable \set [NAME [VALUE]] set internal variable, or list all if no parameters \unset NAME unset (delete) internal variableThe usql project's goal is to support all standard psql commands.
When building usql with go, only drivers for PostgreSQL, MySQL, SQLite3 and Microsoft SQL Server will be enabled by default. Other databases can be enabled by specifying the build tag for their database driver. Additionally, the most and all build tags include most, and all SQL drivers, respectively:
# install all drivers $ go get -u -tags all github.com/xo/usql # install with most drivers (same as all but excludes Oracle/ODBC) $ go get -u -tags most github.com/xo/usql # install with base drivers and Oracle/ODBC support $ go get -u -tags 'oracle odbc' github.com/xo/usqlFor every build tag <driver>, there is also the no_<driver> build tag disabling the driver:
# install all drivers excluding avatica and couchbase $ go get -u -tags 'all no_avatica no_couchbase'Release builds are built with the most build tag. Additional SQLite3 build tags are also specified for releases.
An effort has been made to keep usql's packages modular, and reusable by other developers wishing to leverage usql's code base. As such, it is possible to build a SQL command-line interface (e.g, for use by some other project as an "official" client) using the core usql source tree.
Please refer to main.go to see how usql puts together its packages. usql's code is also well-documented -- please refer to the GoDoc listing to see the various APIs available.
usql works with all Go standard library compatible SQL drivers supported by github.com/xo/dburl.
The databases supported, the respective build tag, and the driver used by usql are:
| Driver | Build Tag | Driver Used |
|---|---|---|
| Microsoft SQL Server | mssql | github.com/denisenkom/go-mssqldb |
| MySQL | mysql | github.com/go-sql-driver/mysql |
| PostgreSQL | postgres | github.com/lib/pq |
| SQLite3 | sqlite3 | github.com/mattn/go-sqlite3 |
| Oracle | oracle | gopkg.in/rana/ora.v4 |
| MySQL | mymysql | github.com/ziutek/mymysql/godrv |
| PostgreSQL | pgx | github.com/jackc/pgx/stdlib |
| Apache Avatica | avatica | github.com/Boostport/avatica |
| ClickHouse | clickhouse | github.com/kshvakov/clickhouse |
| Couchbase | couchbase | github.com/couchbase/go_n1ql |
| Cznic QL | ql | github.com/cznic/ql |
| Firebird SQL | firebird | github.com/nakagami/firebirdsql |
| Microsoft ADODB | adodb | github.com/mattn/go-adodb |
| ODBC | odbc | github.com/alexbrainman/odbc |
| Presto | presto | github.com/prestodb/presto-go-client/presto |
| SAP HANA | hdb | github.com/SAP/go-hdb/driver |
| Sybase SQL Anywhere | sqlany | github.com/a-palchikov/sqlago |
| VoltDB | voltdb | github.com/VoltDB/voltdb-client-go/voltdbclient |
| Google Spanner | spanner | github.com/xo/spanner (not yet public) |
| MOST DRIVERS | most | all drivers excluding Oracle and ODBC (requires CGO and additional dependencies) |
| ALL DRIVERS | all | all drivers |
- dburl - a Go package providing a standard, URL style mechanism for parsing and opening database connection URLs
- xo - a command-line tool to generate Go code from a database schema
usql aims to eventually provide a drop-in replacement for PostgreSQL's psql command. This is on-going -- an attempt has been made in good-faith to provide support for the most frequently used aspects/features of psql. Compatability (where possible) with psql, takes general development priority.
- Fix multiline behavior to mimic psql properly (on arrow up/down through history)
- PAGER
- \qecho + \o support
- fix table output / formatting
- context-based completion (WIP)
- \encoding and environment/command line options to set encoding of input (to convert to utf-8 before feeding to SQL driver) (how important is this ... ?)
- better --help support/output cli, man pages
- the \j* commands (WIP)
- \watch
- \errverbose
- formatting settings (\pset, \a, etc)
- all \d* commands from
psql(WIP, need to finish work extracting introspection code fromxo) - remaining
psqlcli parameters
- correct operation of interweaved -f/-c commands, ie: -f 1 -c 1 -c 2 -f 2 -f 3 -c 3 runs in the specified order
- test suite for databases, doing a minimal set of SELECT, INSERT, UPDATE, DELETE
- Cassandra
- InfluxDB
- CSV via SQLite3 vtable
- Google Sheets via SQLite3 vtable
- Atlassian JIRA JQL (why not? lol)
- Google Spanner