数据库
首页 > 数据库> > java.sql.SQLException: 无效的列类型: 1111

java.sql.SQLException: 无效的列类型: 1111

作者:互联网

Mybatis中出现java.sql.SQLException: 无效的列类型: 1111

 

原因1:where 占位符被传递了 NULL

 

解决方法:

  明确字段类型#{str,jdbcType=VARCHAR}(字符类型),#{num,jdbcType=NUMERIC}或#{num,jdbcType=DECIMAL}(数值类型)

 

标签:java,jdbcType,num,1111,SQLException,sql,类型
来源: https://www.cnblogs.com/iRyz/p/16359969.html