MySQL的ResultMap如何映射NULL值

avatar
作者
筋斗云
阅读量:0

在MySQL中,如果查询结果中有NULL值,ResultMap可以使用jdbcType="NULL"来映射NULL值。示例如下:

<resultMap id="userResultMap" type="User">     <result column="id" property="id" jdbcType="INTEGER"/>     <result column="username" property="username" jdbcType="VARCHAR"/>     <result column="email" property="email" jdbcType="VARCHAR"/>     <result column="age" property="age" jdbcType="INTEGER"/> </resultMap> 

在上面的示例中,如果查询结果中的age字段为NULL,那么会将NULL值映射到User对象的age属性上。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!