# HG changeset patch # User Oleksandr Gavenko # Date 1546383300 -7200 # Node ID 1b3ff9b88a1263c96c0ab4283e2d07a02b418c33 # Parent b127237b615f4aa4393457725c7ffd6be92ed965 Check settings. diff -r b127237b615f -r 1b3ff9b88a12 postgres.rst --- a/postgres.rst Wed Jan 02 00:27:39 2019 +0200 +++ b/postgres.rst Wed Jan 02 00:55:00 2019 +0200 @@ -55,6 +55,12 @@ SHOW hba_file; SHOW config_file; +Check settings +============== +:: + + SELECT name, setting FROM pg_settings; + List databases, schemas and tables ================================== @@ -215,3 +221,12 @@ $ psql -U $USER -h $HOST $DB -c "\\copy tbl_name from 'my.csv' csv" +JDBC driver +=========== + +https://jdbc.postgresql.org/about/about.html + The current version of the driver should be compatible with PostgreSQL 8.2 and higher, and Java 6 + (JDBC 4.0), Java 7 (JDBC 4.1), Java 8 (JDBC 4.2) and Java 9. +https://jdbc.postgresql.org/download.html + Java/JDBC/Postgres compatibility table. +