On Wed, 18 Feb 2009, abdi indra wrote:
org.postgresql.util.PSQLException: FATAL: missing or erroneous pg_hba.conf
This is not a Java/JDBC problem, but a server configuration problem.
local all all 192.168.110.133 trust
This line is bogus because local means a unix domain socket which doesn't have an IP address.
host all all 192.168.110.133/255.255.255.255 trust
This isn't a valid line either. You want the CIDR /32 format, not a netmask.
Kris Jurka