게시판을 이용해 주셔서 감사합니다.
다음양식에 맞게 입력해주세요.
* 고객시스템명 : DKUNC
* GAUCE 버전 : 3.5
* WAS 종류(WebLogic 등등) : 웹로직 8.1.6
* DB 종류 : 오라클
* 문의 유형(질문/요청/참조) : 질문
* 내용 :
일반 사용은 문제 없는데 다음과 같이 다른 DB에 접속하려 하면 문제가 생깁니다.
Connection conn = null;
PreparedStatement stmt = null;
try {
conn = new DBSource().getConnection("ov_sc");
GauceRequest req = service.getGauceRequest();
GauceResponse res = service.getGauceResponse();
GauceDataSet dSet = new GauceDataSet();
res.enableFirstRow(dSet);
stmt = conn.prepareStatement(query);
StandardGauceStatement gstmt= new StandardGauceStatement(stmt, "KSC5601", "KSC5601", "KSC5601");
gstmt.executeQuery(dSet);
dSet.flush();
res.commit("Terminated successfully!");
res.close();
stmt.close();
gstmt.close();
} catch (Exception e) {
logger.err.println(this, e);
throw e;
} finally {
try {
conn.close();
}catch(Exception ex){}
loader.restoreService(service);
}
이런식으로 Data를 가져오는데 한글이 깨집니다.
StandardGauceStatement에서 캐릭터 세팅을 하는것 같은데요.
캐릭터 셋 3가지를 설정하는데 이부분에 대한 해결방안이라던가 아니면 StandardGauceStatement의 파라미터 사용내역에 대한 설명을 받고 싶습니다.