MyBatis: 向oracle表中插入null字段的处理

一、可以在SQL中指定类型:

    @Insert("insert into student values(#{name,jdbcType=NULL},#{age})")
    int addStudent(@Param("name")String name, @Param("age") int age);

二、可以进行全局配置(单独使用MyBatis时可如下配置)
MyBatis: 向oracle表中插入null字段的处理_第1张图片

如果不进行配置,将报错
在这里插入图片描述

你可能感兴趣的:(MyBatis,mybatis,oracle,数据库)