일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Remmina
- Store password unencrypted
- svn 변경된 파일 추출
- 포스트그레스 설치
- taskkill
- grep
- svn commit
- ant
- svn dump
- svn update
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- apt-get update 오류
- WH question
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- svn 사용법
- xrdp
- svn
- docker oracle12c
- expected at least 1 bean which qualifies as autowire candidate
- mysql dml
- postgres install
- svn log
- svn 특정 리비전 사이 추출
- docker 폐쇄망
- svn load
- javax.servlet.GenericFilter
- VirtualBox
- Failed to download metadata for repo 'appstream'
- NEXUS
- Oracle install
- Today
- Total
기억의 습작
Postgres DB Eclipse에 연결 본문
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
외부 아이피 접속하기 설정.
eclipse에서 접속하기.
http://www.itdi.co.kr/onuri/bbs/board.php?bo_table=03_3&wr_id=57
연결설정
http://tltlzhf.blog.me/150170476388
DB입력 자바코드
드라이버 다운로드
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 폴더에 복사한다. (둘 중 하나만 하면 됨)
'DB > postgres' 카테고리의 다른 글
postgres install in Ubuntu (0) | 2021.08.29 |
---|---|
Postgresql 쿼리 예제 (0) | 2021.08.29 |
Postgres install in centOs (0) | 2021.08.29 |