기억의 습작

Postgres DB Eclipse에 연결 본문

DB/postgres

Postgres DB Eclipse에 연결

뿌사리다 2021. 8. 29. 01:09

Eclipse에 연결

드라이버 연결 jar파일 다운로드( link: 8.1-415 JDBC 2EE )

https://jdbc.postgresql.org/download.html

다운로드한 파일(postgresql-8.1-415.jdbc2ee.jar) 을 C:Program FilesJavajre1.8.0_40libext 폴더에 복사한다. (이 작업을 하지 않으려면 아래처럼 lib 폴더에 Drag & Drop 하면된다)

연결 확인을 위해  계정 및 생성한 테이블을 입력한 후 Test Connection 버튼을 눌러본다.

소스코드를 이용한 DB 접속

<%! Connection con = null;

Statement stmt = null;

ResultSet rs = null;

String driver = “org.postgresql.Driver”;

String url = “jdbc:postgresql://61.109.146.42:5432/postgres”;

String user = “postgres”;

String upw = “1234”;

String sql = “SELECT * FROM member”;

%>

<% try {

Class.forName(driver);

con = DriverManager.getConnection(url, user, upw);

stmt = con.createStatement();

rs = stmt.executeQuery(sql);

while (rs.next()) {

out.println(rs.getString(“id”));

}

}

catch(Exception e) {

System.out.println(“ERROR: ” + e.getMessage());

}

%>

참고 사이트  

설치하기 ( CentOS )

http://blog.naver.com/ships95/220234982400

http://chess72.tistory.com/112

DB 생성하기

https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-a-centos-vps

외부 아이피 접속하기 설정.

http://ngee.tistory.com/554

eclipse에서 접속하기.

http://www.itdi.co.kr/onuri/bbs/board.php?bo_table=03_3&wr_id=57

연결설정

http://tltlzhf.blog.me/150170476388

DB입력 자바코드

http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=1040201&docId=69451148&qb=cG9zdGdyZXNxbCAgcG9zdGdyZXNxbC5Ecml2ZXI=&enc=utf8§ion=kin&rank=3&search_sort=0&spq=0&pid=SeySqwpySoGssu%2BmfoGsssssssl-141293&sid=BtUKIK/DH4sep931S4AB1A%3D%3D

드라이버 다운로드

https://jdbc.postgresql.org/download.html

Error 처리 knowhow

문제: No suitable driver found for jdbc:postgresql:  

해결1: 프로젝트에 postgresql-8.1-415.jdbc2ee.jar 파일을 lib 폴더에 Drag&Drop 한다.

해결2  C:Program FilesJavajre1.8.0_40libext 폴더에 복사한다. (둘 중 하나만 하면 됨)

728x90
반응형
LIST

'DB > postgres' 카테고리의 다른 글

postgres install in Ubuntu  (0) 2021.08.29
Postgresql 쿼리 예제  (0) 2021.08.29
Postgres install in centOs  (0) 2021.08.29