Reputation: 23
I want to make a java program to access me database project which is made is pgAdmin 3 postgresql. So how to start with that? I am using windows.
Upvotes: 0
Views: 16380
Reputation: 13272
You need to connect directly to PostgreSQL
, using a JDBC
driver. PgAdmin
is only a management tool that is connecting also to PostgreSQL
. See Connect To PostgreSQL With JDBC Driver for more details.
Upvotes: 1