2010-03-24から1日間の記事一覧

iBatis+MySQL BigIntegerの怪

MySQLのBigIntegerをiBatisで扱った時の不思議現象。桁数でかいのでjava側での受け取りにjava.math.BigIntegerを使いました。 こんな感じ↓ <resultMap id="extResult" class="jp.co.data.Picture" extends="pkResult"> <result column="file_size" property="fileSize" jdbcType="BIGINT(22)" /> </resultMap> public class Picture { private Object fileSize; publi…