Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- xargs
- ssh
- Eclipse
- GIT
- find
- JavaScript
- maVen
- lsof
- plugin
- 단축키
- Windows
- tomcat
- context
- import
- Windows 10
- grep
- port
- Quartz
- vscode
- IntelliJ
- profile
- web.xml
- 네트워크
- Source
- bash
- Mac
- 줄바꿈 문자
- resource
- netsh
- VirtualBox
Archives
- Today
- Total
develog
[Java] 익명 PL/SQL 블럭 실행 본문
public void callAnoymousPlsql(Connection conn) throws Exception {
CallableStatement cstmt = null;
String ln = "\n";
// \r\n ==> ERR
// \n ==> OK
// System.getProperty("line.separator") ==> \r\n
try {
StringBuffer sb = new StringBuffer();
sb.append("DECLARE" + ln);
sb.append("BEGIN" + ln);
sb.append("INSERT INTO AATEST (SEQ, TITLE) VALUES (999, 999);" + ln);
sb.append("COMMIT;" + ln);
sb.append("END;" + ln);
String sql = sb.toString();
System.out.println(sql);
cstmt = conn.prepareCall(sql);
cstmt.execute();
} finally {
if (cstmt != null) {
cstmt.close();
}
}
}
'Dev > Java' 카테고리의 다른 글
memory (0) | 2014.09.10 |
---|---|
eclipse.ini (0) | 2014.09.10 |
[Spring] dbcp 설정 (0) | 2014.08.08 |
[Java] byte <-> int (0) | 2014.07.27 |
[Java] bit & shift 연산 (0) | 2014.07.26 |
Comments