usql is a universal command-line interface for PostgreSQL, MySQL, Oracle
Database, SQLite3, Microsoft SQL Server, and many other databases
including NoSQL and non-relational databases!
Database administrators and developers that would prefer to work with a tool
like psql with non-PostgreSQL databases, will find usql intuitive,
easy-to-use, and a great replacement for the command-line clients/tools
for other databases.
usqlr - Server Version with MCP Support
This is a fork of usql that adds server capabilities with Model Context Protocol (MCP) support.
usqlr transforms the powerful usql CLI tool into a server that can manage multiple database connections simultaneously and exposes them through the Model Context Protocol (MCP). This enables AI assistants and other applications to interact with databases programmatically while maintaining all of usql's extensive database driver support.
Server Mode: Run as a persistent server instead of a CLI tool
MCP Protocol: Full JSON-RPC 2.0 compliant MCP implementation for AI integration
All usql Drivers: Supports the same 70+ database drivers as usql
HTTP API: RESTful endpoints for health checks and connection management
Container Support: Easy database testing with Docker/Podman integration
Build the server binary using the included Makefile:
# Build the usqlr server binary
make build
# Run development server on port 8080
make dev
# Run with custom configuration
make run-config CONFIG=config/usqlr.yaml
The project includes comprehensive tests for both SQLite integration and multi-database driver support:
# Run all tests
make test# Run specific test suites
make test-sqlite # SQLite integration test with MCP protocol
make test-drivers # Test all 70+ database drivers# Database container testing (requires Docker/Podman)
make db-start DB=postgres # Start PostgreSQL container
make db-test DB=postgres # Test PostgreSQL connection
make db-stop DB=postgres # Stop PostgreSQL container# View all available database configurations
make db-list
For detailed testing information, see the Testing README.
Start the usqlr server:
# Start server on default port 8080
./usqlr
# Start server on custom port
./usqlr --port 9000
# Use custom configuration file
./usqlr --config config/usqlr.yaml
The server exposes:
MCP Protocol: POST /mcp - JSON-RPC 2.0 endpoint for AI integration
Health Check: GET /health - Server health and connection status
Connection Management: REST API for database operations
The server implements the full MCP specification with tools for:
create_connection - Create new database connections
# Optional: Needed to run a remote script the first time>Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
# install scoop if not already installed> irm get.scoop.sh | iex
# install usql with scoop> scoop install usql
Install usql in the usual Go fashion:
# install latest usql version with base drivers
$ go install github.com/xo/usql@latest
# alternately, install usql with most drivers (see below for info about build tags)
$ go install -tags most github.com/xo/usql@latest
Install usql with Docker, Podman, or other container runtime:
# run interactive shell and mount the $PWD/data directory as a volume for use# within the container
$ docker run --rm -it --volume $(pwd)/data:/data docker.io/usql/usql:latest sqlite3://data/test.db
Trying to pull docker.io/usql/usql:latest...
Getting image source signatures
Copying blob af48168d69d8 done|
Copying blob efc2b5ad9eec skipped: already exists
Copying config 917ceb411d done|
Writing manifest to image destination
Connected with driver sqlite3 (SQLite3 3.45.1)
Type "help"for help.
sq:data/test.db=>\q# run postgres locally
$ docker run --detach --rm --name=postgres --publish=5432:5432 --env=POSTGRES_PASSWORD=P4ssw0rd docker.io/usql/postgres
# connect to local postgres instance
$ docker run --rm --network host -it docker.io/usql/usql:latest postgres://postgres:P4ssw0rd@localhost
Connected with driver postgres (PostgreSQL 16.3 (Debian 16.3-1.pgdg120+1))
Type "help"for help.
pg:postgres@localhost=>\q# run specific usql version
$ docker run --rm -it docker.io/usql/usql:0.19.3
When building usql out-of-the-box with go build or go install, only the
base drivers for PostgreSQL, MySQL, SQLite3, Microsoft SQL
Server, Oracle, CSVQ will be included in the build:
# build/install with base drivers (PostgreSQL, MySQL, SQLite3, Microsoft SQL Server,# Oracle, CSVQ)
$ go install github.com/xo/usql@master
# build/install with base, Avatica, and ODBC drivers
$ go install -tags 'avatica odbc' github.com/xo/usql@master
For every build tag <driver>, there is also a no_<driver> build tag
that will disable the driver:
# build/install most drivers, excluding Avatica, Couchbase, and PostgreSQL
$ go install -tags 'most no_avatica no_couchbase no_postgres' github.com/xo/usql@master
By specifying the build tags most or all, the build will include most, and
all SQL drivers, respectively:
# build/install with most drivers (excludes CGO drivers and problematic drivers)
$ go install -tags most github.com/xo/usql@master
# build/install all drivers (includes CGO drivers and problematic drivers)
$ go install -tags all github.com/xo/usql@master
usql works with all Go standard library compatible SQL drivers supported by
github.com/xo/dburl.
The list of drivers that usql was built with can be displayed with the
\drivers command:
$ cd$GOPATH/src/github.com/xo/usql
# build excluding the base drivers, and including cassandra and moderncsqlite
$ go build -tags 'no_postgres no_oracle no_sqlserver no_sqlite3 cassandra moderncsqlite'# show built driver support
$ ./usql -c '\drivers'
Available Drivers:
cql [ca, scy, scylla, datastax, cassandra]
memsql (mysql) [me]
moderncsqlite [mq, sq, file, sqlite, sqlite3, modernsqlite]
mysql [my, maria, aurora, mariadb, percona]
tidb (mysql) [ti]
vitess (mysql) [vt]
The above shows that usql was built with only the mysql, cassandra (ie,
cql), and moderncsqlite drivers. The output above reflects information
about the drivers available to usql, specifically the internal driver name,
its primary URL scheme, the driver's available scheme aliases (shown in
[...]), and the real/underlying driver (shown in (...)) for wire compatible
drivers.
Supported Database Schemes and Aliases
The following are the Go SQL drivers that usql supports, the
associated database, scheme / build tag, and scheme aliases:
Database
Scheme / Tag
Scheme Aliases
Driver Package / Notes
Any of the protocol schemes/aliases above can be used in conjunction when
connecting to a database via the command-line or with the \connect and
\copy commands:
After 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 the commands contained in script.sql
$ usql pg://localhost/ -f script.sql
Supported command-line options:
$ usql --help
usql, the universal command-line interface for SQL databases
Usage:
usql [flags]... [DSN]
Arguments:
DSN database url or connection name
Flags:
-c, --command COMMAND run only single command (SQL or internal) and exit
-f, --file FILE execute commands from file and exit
-w, --no-password never prompt for password
-X, --no-init do not execute initialization scripts (aliases: --no-rc --no-psqlrc --no-usqlrc)
-o, --out FILE output file
-W, --password force password prompt (should happen automatically)
-1, --single-transaction execute as a single transaction (if non-interactive)
-v, --set NAME=VALUE set variable NAME to VALUE (see \set command, aliases: --var --variable)
-N, --cset NAME=DSN set named connection NAME to DSN (see \cset command)
-P, --pset VAR=ARG set printing option VAR to ARG (see \pset command)
-F, --field-separator FIELD-SEPARATOR field separator for unaligned and CSV output (default "|" and ",")
-R, --record-separator RECORD-SEPARATOR record separator for unaligned and CSV output (default \n)
-T, --table-attr TABLE-ATTR set HTML table tag attributes (e.g., width, border)
-A, --no-align unaligned table output mode
-H, --html HTML table output mode
-t, --tuples-only print rows only
-x, --expanded turn on expanded table output
-z, --field-separator-zero set field separator for unaligned and CSV output to zero byte
-0, --record-separator-zero set record separator for unaligned and CSV output to zero byte
-J, --json JSON output mode
-C, --csv CSV output mode
-G, --vertical vertical output mode
-q, --quiet run quietly (no messages, only query output)
--config string config file
-V, --version output version information, thenexit
-?, --help show this help, thenexit
usql opens a database connection by parsing a URL and passing the
resulting connection string to a 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 to the \connect,
\c, and \copy commands.
usql supports the same driver names and aliases as the dburl
package. Databases have at least one or more aliases. See dburl's
scheme documentation for a list of all supported aliases.
All database drivers have a two character short form that is usually the first
two letters of the database driver. For example, pg for postgres, my for
mysql, ms for sqlserver, or for oracle, or sq for sqlite3.
Driver options are specified as standard URL query options in the form of
?opt1=a&opt2=b. Refer to the relevant database driver's documentation
for available options.
If a URL does not have 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.
When the path is a Unix Domain Socket, usql will attempt to open it with the
MySQL driver. When the path is a directory, usql will attempt to open it
using the PostgreSQL driver. And, lastly, when the path is a regular file,
usql will attempt to open the file using the SQLite3 or DuckDB drivers.
As with URLs, most components in the URL are optional and many components can
be left out. usql will attempt connecting using defaults where possible:
# connect to postgres using the local $USER and the unix domain socket in /var/run/postgresql
$ usql pg://
The following are example connection strings and additional ways to connect to
databases using usql:
# connect to a postgres database
$ usql pg://user:pass@host/dbname
$ usql pgsql://user:pass@host/dbname
$ usql postgres://user:pass@host:port/dbname
$ usql pg://
$ usql /var/run/postgresql
$ usql pg://user:pass@host/dbname?sslmode=disable # Connect without SSL# connect to a mysql database
$ usql my://user:pass@host/dbname
$ usql mysql://user:pass@host:port/dbname
$ usql my://
$ usql /var/run/mysqld/mysqld.sock
# connect to a sqlserver database
$ usql sqlserver://user:pass@host/instancename/dbname
$ usql ms://user:pass@host/dbname
$ usql ms://user:pass@host/instancename/dbname
$ usql mssql://user:pass@host:port/dbname
$ usql ms://
# connect to a sqlserver database using Windows domain authentication
$ runas /user:ACME\wiley /netonly "usql mssql://host/dbname/"# connect to a oracle database
$ usql or://user:pass@host/sid
$ usql oracle://user:pass@host:port/sid
$ usql or://
# connect to a cassandra database
$ usql ca://user:pass@host/keyspace
$ usql cassandra://host/keyspace
$ usql cql://host/
$ usql ca://
# connect to a sqlite database that exists on disk
$ usql dbname.sqlite3
# Note: when connecting to a SQLite database, if the "driver://" or# "driver:" scheme/alias is omitted, the file must already exist on disk.## if the file does not yet exist, the URL must incorporate file:, sq:, sqlite3:,# or any other recognized sqlite3 driver alias to force usql to create a new,# empty database at the specified 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\""# connect to a named connection in $HOME/.config/usql/config.yaml
$ cat $HOME/.config/usql/config.yaml
connections:
my_named_connection: sqlserver://user:pass@localhost/
$ usql my_named_connection
# connect with ODBC driver (requires building with odbc tag)
$ cat /etc/odbcinst.ini
[DB2]
Description=DB2 driver
Driver=/opt/db2/clidriver/lib/libdb2.so
FileUsage = 1
DontDLClose = 1
[PostgreSQL ANSI]
Description=PostgreSQL ODBC driver (ANSI version)
Driver=psqlodbca.so
Setup=libodbcpsqlS.so
Debug=0
CommLog=1
UsageCount=1
# connect to db2, postgres databases using odbc config above
$ usql odbc+DB2://user:pass@localhost/dbname
$ usql odbc+PostgreSQL+ANSI://user:pass@localhost/dbname?TraceFile=/path/to/trace.log
The interactive interpreter reads queries and backslash meta (\) commands,
sending the query to the connected database:
$ 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->\pselect* 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 | foobar
(3 rows)
pg:booktest@localhost=>
Commands may accept one or more parameter, and can be quoted using either '
or ". Command parameters may also be backticked.
usql supports interleaved backslash (\) meta commands to modify or alter
the way that usql interprets queries, formats its output, and changes the
resulting interactive flow.
(not connected)=>\c postgres://user:pass@localhost
pg:user@localhost=>select* from my_table \G
Available backslash meta commands can be displayed with \?:
$ usql
Type "help"for help.
(not connected)=>\?
General
\q quit usql
\quit aliasfor\q\copyright show usage and distribution terms for usql
\drivers show database drivers available to usql
Help
\? [commands] show help on usql's meta (backslash) commands \? options show help on usql command-line options \? variables show help on special usql variablesConnection \c DSN or \c NAME connect to dsn or named database connection \c DRIVER PARAMS... connect to database with driver and parameters \connect alias for \c \Z close (disconnect) database connection \disconnect alias for \Z \password [USER] change password for user \passwd alias for \password \conninfo display information about the current database connectionQuery Execute \g [(OPTIONS)] [FILE] or ; execute query (and send results to file or |pipe) \go alias for \g \G [(OPTIONS)] [FILE] as \g, but forces vertical output mode \ego alias for \G \gx [(OPTIONS)] [FILE] as \g, but forces expanded output mode \gexec execute query and execute each value of the result \gset [PREFIX] execute query and store results in usql variables \bind [PARAM]... set query parameters \timing [on|off] toggle timing of commandsQuery View \crosstab [(OPTIONS)] [COLUMNS] execute query and display results in crosstab \crosstabview alias for \crosstab \xtab alias for \crosstab \chart CHART [(OPTIONS)] execute query and display results as a chart \watch [(OPTIONS)] [INTERVAL] execute query every specified intervalQuery Buffer \e [-raw|-exec] [FILE] [LINE] edit the query buffer, raw (non-interpolated) buffer, the exec buffer, or a file with external editor \edit alias for \e \p [-raw|-exec] show the contents of the query buffer, the raw (non-interpolated) buffer or the exec buffer \print alias for \p \raw alias for \p \exec alias for \p \w [-raw|-exec] FILE write the contents of the query buffer, raw (non-interpolated) buffer, or exec buffer to file \write alias for \w \r reset (clear) the query buffer \reset alias for \rInformational \d[S+] [NAME] list tables, views, and sequences or describe table, view, sequence, or index \da[S+] [PATTERN] list aggregates \df[S+] [PATTERN] list functions \di[S+] [PATTERN] list indexes \dm[S+] [PATTERN] list materialized views \dn[S+] [PATTERN] list schemas \dp[S] [PATTERN] list table, view, and sequence access privileges \ds[S+] [PATTERN] list sequences \dt[S+] [PATTERN] list tables \dv[S+] [PATTERN] list views \l[+] list databases \ss[+] [TABLE|QUERY] [k] show stats for a table or a queryVariables \set [NAME [VALUE]] set usql application variable, or show all usql application variables if no parameters \unset NAME unset (delete) usql application variable \pset [NAME [VALUE]] set table print formatting option, or show all print formatting options if no parameters \a toggle between unaligned and aligned output mode \C [TITLE] set table title, or unset if none \f [SEPARATOR] show or set field separator for unaligned query output \H toggle HTML output mode \T [ATTRIBUTES] set HTML <table> tag attributes, or unset if none \t [on|off] show only rows \x [on|off|auto] toggle expanded output \cset [NAME [URL]] set named connection, or show all named connections if no parameters \cset NAME DRIVER PARAMS... set named connection for driver and parameters \prompt [-TYPE] VAR [PROMPT] prompt user to set application variableInput/Output \echo [-n] [MESSAGE]... write message to standard output (-n for no newline) \qecho [-n] [MESSAGE]... write message to \o output stream (-n for no newline) \warn [-n] [MESSAGE]... write message to standard error (-n for no newline) \o [FILE] send all query results to file or |pipe \out alias for \o \copy SRC DST QUERY TABLE copy results of query from source database into table on destination database \copy SRC DST QUERY TABLE(A,...) copy results of query from source database into table's
columns on destination database
Control/Conditional
\i FILE execute commands from file
\include aliasfor\i\ir FILE as \i, but relative to location of current script
\include_relative aliasfor\ir
\if EXPR begin conditional block
\elif EXPR alternative within current conditional block
\else final alternative within current conditional block
\endif end conditional block
Transaction
\begin [-read-only [ISOLATION]] begin transaction, with optional isolation level
\commit commit current transaction
\rollback rollback (abort) current transaction
\abort aliasfor\rollback
Operating System/Environment
\! [COMMAND] execute commandin shell or start interactive shell
\cd [DIR] change the current working directory
\getenv VARNAME ENVVAR fetch environment variable
\setenv NAME [VALUE] set or unset environment variable
The usql project's goal is to support as much of psql's core features and
functionality, and aims to be as compatible as possible - contributions are
always appreciated!
During its initialization phase, usql reads a standard YAML configuration
file config.yaml. On Windows this is %AppData%/usql/config.yaml,
on macOS this is $HOME/Library/Application Support/usql/config.yaml, and on
Linux and other Unix systems this is normally $HOME/.config/usql/config.yaml.
Defined connections: can be used on the command-line with \connect, \c,
\copy, and other commands:
$ usql my_godror_conn
Connected with driver godror (Oracle Database 23.0.0.0.0)
Type "help"for help.
gr:system@localhost/free=>
An initialization script can be defined as init: as a string:
init: | \echo welcome to the jungle `date` \set SYNTAX_HL_STYLE paraiso-dark \set PROMPT1 '\033[32m%S%M%/%R%#\033[0m '
The init: script is commonly used to set environment variables
or other configuration, and can be disabled on the command-line using the
--no-init / -X flag. The script will be executed prior to any -c /
--command / -f / --file flag and before starting the interactive
interpreter.
Please see contrib/config.yaml for an overview of
available configuration options.
Runtime variables are managed with the \set and \unset commands:
(not connected)=>\unset FOO
(not connected)=>\set FOO bar
Runtime variables can be displayed with \set:
(not connected)=>\set
FOO = 'bar'
When a runtime variable NAME has been \set, then :NAME, :'NAME', and
:"NAME" will be interpolated into the query buffer:
pg:booktest@localhost=>\set FOO bar
pg:booktest@localhost=>select* from authors where name = :'FOO';
author_id | name
+-----------+------+
7 | bar
(1 rows)
Where a runtime variable is used as :'NAME' or :"NAME" the interpolated
value will be quoted using ' or " respectively:
pg:booktest@localhost=>\set TBLNAME authors
pg:booktest@localhost=>\set COLNAME name
pg:booktest@localhost=>\set FOO bar
pg:booktest@localhost=>select* from :TBLNAME where :"COLNAME" = :'FOO'
The query buffer and interpolated values can be displayed with \p and
\print, or the raw query buffer can be displayed with \raw:
pg:booktest@localhost->\pselect* from authors where "name" = 'bar'
pg:booktest@localhost->\raw
select* from :TBLNAME where :"COLNAME" = :'FOO'
Note
Variables contained within other strings will not be interpolated:
Connection variables work similarly to runtime variables, and are managed with
\cset. Connection variables can be used with the \c, \connect, \copy,
or other commands:
As demonstrated above, the \copy command does not require being connected to
a database, and will not modify or change the current open database connection
or state.
Any valid URL or DSN name maybe used for the source and destination database:
The QUERY must return the same number of columns as defined by
the TABLE expression:
$ usql
(not connected)=>\copy csvq:. sq:test.db 'select * from authors' authors
error: failed to prepare insert query: 2 values for 1 columns
(not connected)=>\copy csvq:. sq:test.db 'select name from authors' authors(name)
COPY 2
Datatype Compatibility and Casting
The \copy command does not attempt to perform any kind of datatype
conversion.
If a QUERY returns columns with different datatypes than expected by the
TABLE's column, the QUERY can use the source database's conversion/casting
functionality to cast columns to a datatype that will work for TABLE's
columns:
The \copy command is capable of importing data from CSV's (or any other
database!) using the csvq driver:
$ cat authors.csv
author_id,name
1,Isaac Asimov
2,Stephen King
$ cat books.csv
book_id,author_id,title
1,1,I Robot
2,2,Carrie
3,2,Cujo
$ usql
(not connected)=> -- setting variables to make connections easier
(not connected)=>\set SOURCE_DSN csvq://.
(not connected)=>\set DESTINATION_DSN sqlite3:booktest.db
(not connected)=> -- connecting to the destination and creating the schema
(not connected)=>\c :DESTINATION_DSN
Connected with driver sqlite3 (SQLite3 3.38.5)
(sq:booktest.db)=> create table authors (author_id integer, name text);
CREATE TABLE
(sq:booktest.db)=> create table books (book_id integer not null primary key autoincrement, author_id integer, title text);
CREATE TABLE
(sq:booktest.db)=> -- adding an extra row to books prior to copying
(sq:booktest.db)=> insert into books (author_id, title) values (1, 'Foundation');
INSERT 1
(sq:booktest.db)=> -- disconnecting to demonstrate that \copy opens new database connections
(sq:booktest.db)=>\disconnect
(not connected)=> -- copying data from SOURCE -> DESTINATION
(not connected)=>\copy :SOURCE_DSN :DESTINATION_DSN 'select * from authors' authors
COPY 2
(not connected)=>\copy :SOURCE_DSN :DESTINATION_DSN 'select author_id, title from books''books(author_id, title)'
COPY 3
(not connected)=>\c :DESTINATION_DSN
Connected with driver sqlite3 (SQLite3 3.38.5)
(sq:booktest.db)=>select* from authors;
author_id | name
-----------+--------------
1 | Isaac Asimov
2 | Stephen King
(2 rows)
sq:booktest.db=>select* from books;
book_id | author_id | title
---------+-----------+------------
1 | 1 | Foundation
2 | 1 | I Robot
3 | 2 | Carrie
4 | 2 | Cujo
(4 rows)
Note
When importing large datasets (> 1GiB) from one database to another, it is
better to use a database's native clients and tools.
Reusing Connections with Copy
The \copy command (and all usql commands) works with variables.
When scripting, or when needing to perform multiple \copy operations from/to
multiple sources/destinations, the best practice is to \set connection
variables either in a script or in the $HOME/.usqlrc RC script.
When using the interactive shell, context completion is available in usql by
hitting the <Tab> key. For example, hitting <Tab> can complete some parts
of SELECT queries on a PostgreSQL databases:
$ usql
Connected with driver postgres (PostgreSQL 14.4 (Debian 14.4-1.pgdg110+1))
Type "help"for help.
pg:postgres@=>select* f<Tab>
fetch from full outer join
Or, for example completing backslash commands while connected to a
database:
$ usql my://
Connected with driver mysql (10.8.3-MariaDB-1:10.8.3+maria~jammy)
Type "help"for help.
my:root@=>\g<Tab>\g\gexec \gset \gx
Not all commands, contexts, or databases support completion. If you're
interested in helping to make usql's completion better, see the section
below on contributing.
Command completion can be canceled with <Control-C>.
Some databases support time/date columns that support formatting. By
default, usql formats time/date columns as RFC3339Nano, and can be
set using \pset time FORMAT:
$ usql pg://
Connected with driver postgres (PostgreSQL 13.2 (Debian 13.2-1.pgdg100+1))
Type "help"for help.
pg:postgres@=>\pset
time RFC3339Nano
pg:postgres@=>selectnow();
now
-----------------------------
2021-05-01T22:21:44.710385Z
(1 row)
pg:postgres@=>\pset time Kitchen
Time display is "Kitchen" ("3:04PM").
pg:postgres@=>selectnow();
now
---------
10:22PM
(1 row)
pg:postgres@=>
By default, usql displays connection information when connecting to a
database. This might cause problems with some databases or connections. This
can be disabled by setting the system environment variable USQL_SHOW_HOST_INFORMATION
to false:
$ export USQL_SHOW_HOST_INFORMATION=false
$ usql pg://booktest@localhost
Type "help"for help.
pg:booktest@=>
SHOW_HOST_INFORMATION is a standard usql variable,
and can be \set or \unset. Additionally, it can be passed via the
command-line using -v or --set:
$ usql --set SHOW_HOST_INFORMATION=false pg://
Type "help"for help.
pg:booktest@=>\set SHOW_HOST_INFORMATION true
pg:booktest@=>\connect pg://
Connected with driver postgres (PostgreSQL 9.6.9)
pg:booktest@=>
usql will attempt to detect when terminal graphics support is available using
the USQL_TERM_GRAPHICS, TERM_GRAPHICS and other environment variables
unique to various terminals.
When support is available, the logo will be displayed at the start of an
interactive session:
The \chart command can be used to display a chart
directly in the terminal:
The .usqlpass file cannot be readable by other users, and the permissions
should be set accordingly:
Runtime Configuration (RC) File
usql supports executing a .usqlrc runtime configuration (RC) file contained
in the user's HOME directory:
$ cat $HOME/.usqlrc
\echo WELCOME TO THE JUNGLE `date`\set SYNTAX_HL_STYLE paraiso-dark
-- set color prompt (default is prompt is "%S%m%/%R%#" )
\set PROMPT1 "\033[32m%S%m%/%R%#\033[0m"
$ usql
WELCOME TO THE JUNGLE Thu Jun 14 02:36:53 WIB 2018
Type "help"for help.
(not connected)=>\set
SYNTAX_HL_STYLE = 'paraiso-dark'
(not connected)=>
The .usqlrc file is read at startup in the same way as a file passed on the
command-line with -f / --file. It is commonly used to set startup
environment variables and settings.
RC-file execution can be temporarily disabled at startup by passing -X or
--no-init on the command-line:
While the .usqlrc functionality will not be removed, it is recommended to set
an init script in the config.yaml file.
The following are additional notes and miscellania related to usql:
The recommended installation method on macOS is via brew due
to the way library dependencies for the sqlite3 driver are done on macOS. If
the following (or similar) error is encountered when attempting to run usql:
$ usql
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicuuc.68.dylib
Referenced from: /Users/user/.local/bin/usql
Reason: image not found
Abort trap: 6
Then missing library dependency can be fixed by installing
icu4c using brew:
usql is currently a WIP, and is aiming towards a 1.0 release soon.
Well-written PRs are always welcome -- and there is a clear backlog of issues
marked help wanted on the GitHub issue tracker! For technical details on
contributing, see CONTRIBUTING.md.