TOOL/DATABASE 2016. 12. 17. 01:51

!markdown



# PostgreSQL 그리고 PPAS


두 DB를 같다고 생각하는 사람이 있지만, JDBC 드라이버부터 다르다.



### 1. PostgreSQL


- CLASS: org.postgresql.Driver

- URL: jdbc:postgresql://localhost:5432/postgres

- JAR: postgresql-9.4...jar 이런식으로 되어있다.



### 2. PPAS (Postgres Plus Advanced Server)


- CLASS: com.edb.Driver

- URL: jdbc:edb://localhost:5444/edb

- JAR:  edb-17.jar 이런식으로 되어있으며, 인터넷에서 따로 다운로드를 하거나 구할 수 없을 것이다. 

(PPAS를 깔고나면, 설치된 경로 안에 뒤져보면 있다.)



### 참고


JDBC connection string 정보 ( Oracle vs. PPAS ):

[http://m.blog.daum.net/initdb/79](http://m.blog.daum.net/initdb/79)