When using a JDBC driver for PostgreSQL in a Java program, is it correct that I can only execute SQL commands?
Can I execute psql-specific commands, such as \conninfo, \l ...?
Does JDBC directly connect to PostgreSQL server, not to any client such as psql?
Thanks.