일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Mac
- 단축키
- context
- bash
- profile
- find
- netsh
- VirtualBox
- resource
- Quartz
- GIT
- tomcat
- Eclipse
- Windows
- Source
- 줄바꿈 문자
- grep
- import
- web.xml
- maVen
- ssh
- xargs
- lsof
- Windows 10
- plugin
- JavaScript
- vscode
- IntelliJ
- 네트워크
- port
- Today
- Total
develog
Apache Derby Eclipse plug-in 본문
1. Derby Eclipse plug-in 다운로드
http://db.apache.org/derby/derby_downloads.html
- derby_core_plugin_10.8.2.zip
- derby_ui_doc_plugin_1.1.3.zip
2. plug-in 설치
- eclipse 종료
- 다운로드 받은 파일 압축 풀고 eclipse/ 밑에 압축 해제
- eclipse 실행
3. java 프로젝트 생성
4. Add Apache Derby Nature
- 프로젝트 마우스 우 클릭 - Apache Derby - Add Apache Derby Nature
5. Start Derby Network Server
- 프로젝트 마우스 우 클릭 - Apache Derby - Start Derby Network Server
6. ij 프롬프트
- 프로젝트 마우스 우 클릭 - Apache Derby - ij (Interactive SQL)
- Console 창에 ij> 프롬프트 실행 됨
7. DB 생성
ij> connect 'jdbc:derby:myDB;create=true';
8. getConnection()
private Connection getConnection() {
Connection conn = null;
try {
Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
conn = DriverManager.getConnection("jdbc:derby:myDB;create=true");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
9. ij
ij> connect 'jdbc:derby:myDB;create=true';
ij> show schemas;
ij> show tables;
ij> describe table_name;
ij> disconnect;
ij> exit;
'Dev > Java' 카테고리의 다른 글
Quartz - Defining a Job (0) | 2012.12.14 |
---|---|
java get ip (0) | 2012.12.14 |
Quartz cron expression test (0) | 2012.12.04 |
Quartz Test (0) | 2012.12.04 |
ApplicationContext 가져오는 방법 (0) | 2012.12.04 |