특별한딸기이야기
인라인 파라미터 매핑 사용하기 본문
sqlMap-test.xml
<insert id="insertInline">
<insert id="insertInline">
insert into account(id, name, password, join, address, city, state, country, postcode, version) values (#id:NUMBER#, #name:VARCHAR#, #password:VARCHAR#, #join:TIMESTAMP#, #address:VARCHAR#, #city:VARCHAR#, #state:VARCHAR#, #country:VARCHAR#, #postcode:VARCHAR#, #version:NUMBER#)
</insert>
main class file
Information info = new Information();
info.setId("special0strawberry");
...//생략해도 알것이라 생각됨
sqlMapClient.insert("insertInline", info);
//딱히 별 표시 없어도 알듯...
main class file
Information info = new Information();
info.setId("special0strawberry");
...//생략해도 알것이라 생각됨
sqlMapClient.insert("insertInline", info);
//딱히 별 표시 없어도 알듯...
'딸기 공부방 > iBATIS' 카테고리의 다른 글
외부 파라미터 맵 사용하기 (0) | 2008.11.19 |
---|---|
#, $대입자로 인라인 파라미터 사용하기 (0) | 2008.11.19 |
<include> 태그 예제 (0) | 2008.11.19 |
iBATIS 간단 예제 (0) | 2008.11.18 |