atom-psql

Use PostgreSQL psql client from within Atom

maisk

9,508

3

0.33.0

MIT

GitHub

This package provides the following services:

This package consumes the following services:

atom-psql

Use PostgreSQL psql client from within Atom

alt text

Basic Features:

currently run only in Linux and Mac.

In order to start use: F9 or menu: "Packages -> atom-psql -> new Connection"

for demosntration of \gset you can try:

SELECT 1 as v1, now() \gset r_
SELECT :r_v1 + 1 as sum1 \gset
SELECT :sum1 + 1 as sum2;