123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="UTF-8"?>
- <sqls>
- <resultMap id="db2">
- <result type="SMALLINT" reader="kr.co.hit.live.dao.reader.IntColumnReader"/>
- <result type="DATE" reader="kr.co.hit.live.dao.reader.FormattedDateColumnReader" format="yyyyMMdd"/>
- <result type="TIME" reader="kr.co.hit.live.dao.reader.FormattedTimeColumnReader" format="HHmmss"/>
- <result type="TIMESTAMP" reader="kr.co.hit.live.dao.reader.FormattedTimeStampColumnReader" format="yyyyMMddHHmmssSSS"/>
- </resultMap>
- <statement id="db2.advice.pre.nowait">set current lock timeout 0</statement>
- <statement id="db2.advice.post.nowait">set current lock timeout null</statement>
- <statement id="db2.advice.pre.wait">set current lock timeout null</statement>
-
- <resultMap id="oracle">
- <result type="SMALLINT" reader="kr.co.hit.live.dao.reader.IntColumnReader"/>
- <result type="DATE" reader="kr.co.hit.live.dao.reader.FormattedDateColumnReader" format="yyyyMMdd"/>
- <result type="TIME" reader="kr.co.hit.live.dao.reader.FormattedTimeColumnReader" format="HHmmss"/>
- <result type="TIMESTAMP" reader="kr.co.hit.live.dao.reader.FormattedTimeStampColumnReader" format="yyyyMMddHHmmssSSS"/>
- </resultMap>
-
- <resultMap id="sybase">
- <result type="SMALLINT" reader="kr.co.hit.live.dao.reader.IntColumnReader"/>
- <result type="DATE" reader="kr.co.hit.live.dao.reader.FormattedDateColumnReader" format="yyyyMMdd"/>
- <result type="TIME" reader="kr.co.hit.live.dao.reader.FormattedTimeColumnReader" format="HHmmss"/>
- <result type="TIMESTAMP" reader="kr.co.hit.live.dao.reader.FormattedTimeStampColumnReader" format="yyyyMMddHHmmssSSS"/>
- <result type="VARCHAR" reader="kr.co.hit.live.dao.reader.ISOStringColumnReader"/>
- </resultMap>
- </sqls>
|