http://opensource.atlassian.com/confluence/oss/display/IBATIS/Environment+Specific+Information
Timeout
As of release 2.2.0, iBATIS includes a query timeout funcionality.
You can specify both a global timeout
<settings defaultStatementTimeout="2" />
or a per query timeout
<statement ... timeout="2">
When the timeout expires, it throws a SQL Exception "ORA-01013 : user requested cancel of currentoperation".
Tested with: Oracle 9i release 2 drivers.
결론 : 수행에 3초이상 걸리는 쿼리가 있다면 해당 쿼리 정의문에 timeout attribute를 주던가 기본 sqlmap-config.xml 파일의 defaultStatementTimeout 값을 늘려주어라.
Timeout
As of release 2.2.0, iBATIS includes a query timeout funcionality.
You can specify both a global timeout
<settings defaultStatementTimeout="2" />
or a per query timeout
<statement ... timeout="2">
When the timeout expires, it throws a SQL Exception "ORA-01013 : user requested cancel of currentoperation".
Tested with: Oracle 9i release 2 drivers.
결론 : 수행에 3초이상 걸리는 쿼리가 있다면 해당 쿼리 정의문에 timeout attribute를 주던가 기본 sqlmap-config.xml 파일의 defaultStatementTimeout 값을 늘려주어라.
'자바 > iBatis' 카테고리의 다른 글
ibatis에서 서로 다른 sqlmap.xml 파일 간 참조 ID로 접근해야 될 경우 고려사항 (0) | 2011.11.04 |
---|---|
Oracle9i에서 iBatis, Spring + iBatis CLOB 삽질기 (0) | 2009.12.13 |
부적합한 열 유형 관련 에러 (0) | 2009.04.18 |
iBATIS BulkBeanException 예외에 대해서 .... (0) | 2008.06.11 |
iBatis 프로시져 호출 시 주의사항 (1) | 2008.03.31 |