微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

usql SQL 数据库的通用命令行界面

程序名称:usql

授权协议: MIT

操作系统: 跨平台

开发语言: Google Go

usql 介绍

usqlsql 数据库的通用命令行界面。支持主流的数据库软件,如 Postgresql, MysqL, Oracle Database,
sqlite3, Microsoft sql Server 以及许多其他的数据库包括 Nosql 和非关系型数据库)。

usql 的灵感来自 Postgresql 的 psql,通过命令行提供了一种简单的方式来操作 sql 和 Nosql 数据库。usql 支持大多数
psql 的核心特性,如变量、反引号(backticks)和命令,并具有 psql 不支持的其他功能,如语法高亮、基于上下文的自动补全和多数据库支持等。

使用

安装完成后,usql 可以像以下方式这样使用:

# 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.sql

命令行选项

$ usql --help
usql, the universal command-line interface for sql databases.

usql 0.7.0
Usage: usql [--command COMMAND] [--file FILE] [--output OUTPUT] [--username USERNAME] [--password] [--no-password] [--no-rc] [--single-transaction] [--set SET] DSN

Positional arguments:
  DSN                    database url

Options:
  --command COMMAND, -c COMMAND
                         run only single command (sql or internal) and exit
  --file FILE, -f FILE   execute commands from file and exit
  --output OUTPUT, -o OUTPUT
                         output file
  --username USERNAME, -U USERNAME
                         database user name [default: ken]
  --password, -W         force password prompt (should happen automatically)
  --no-password, -w      never prompt for password
  --no-rc, -X            do not read start up file
  --single-transaction, -1
                         execute as a single transaction (if non-interactive)
  --set SET, -v SET      set variable NAME=VALUE
  --help, -h             display this help and exit
  --version              display version and exit

usql 官网

https://github.com/xo/usql

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐