VD3011
VD3011

Reputation: 23

how to connect to pgAdmin using jdbc

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

Answers (1)

dan
dan

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

Related Questions