发布网友 发布时间:2022-04-10 08:34
共4个回答
懂视网 时间:2022-04-10 12:55
public class MetaPhysicColumn { 2 3 public enum DataType{NUMBER, STRING, DATE, TIMESTAMP} 4 5 private String id; 6 private String name; 7 private String description; 8 private String tableId; 9 private DataType dataType; 10 private boolean primaryKey; 11 }1 create table meta_physic_column 2 ( 3 id varchar2(128), 4 name varchar2(128), 5 description varchar2(512), 6 table_id varchar2(128), 7 data_type varchar2(128), 8 primary_key varchar2(1) 9 );
执行如下代码插入数据时出现了“无效的列类型”错误
1 public void insertPhysicColumn(MetaPhysicColumn physicColumn) { 2 String sql = "insert into meta_physic_column (id, name, description, table_id, data_type, primary_key) values( :id, :name, :description, :tableId, :dataType, :primaryKey)"; 3 SqlParameterSource paramSource = new BeanPropertySqlParameterSource(physicColumn); 4 this.getNamedParameterJdbcTemplate().update(sql, paramSource); 5 }
org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized SQLException for SQL [insert into cngtest(id, name, description, table_id, data_type, primary_key) values( ?, ?, ?, ?, ?, ?)]; SQL state [99999]; error code [17004]; 无效的列类型; nested exception is java.sql.SQLException: 无效的列类型 at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:84) at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81) at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81) at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:649)
从Oracle中读取varchar2类型数据装配到相应的枚举类型不会出现问题,但是插入数据时,BeanPropertySqlParameterSource没有提供枚举类型到varchar2的映射,执行时会报错。从源码分析:SqlParameterSource是用来实现命名参数传递的接口,NamedParameterJdbcTemplate.update()通过调用其中的getSqlType(var)和getValue(var)两个函数来获取列对应的SQL类型和JAVA中绑定的对象,BeanPropertySqlParameterSource是SqlParameterSource的一个实现,继承结构为BeanPropertySqlParameterSource extends AbstractSqlParameterSource implements SqlParameterSource,AbstractSqlParameterSource类中提供了registerSqlType()函数手动注册列的类型,可以通过这个接口把枚举对应列注册为varchar2类型,代码如下,但是每个对象中的枚举属性名字都不同,这个方法不具有一般性;
1 public void insertPhysicColumn(MetaPhysicColumn physicColumn) { 2 String sql = "insert into meta_physic_column (id, name, description, table_id, data_type, primary_key) 3 values( :id, :name, :description, :tableId, :dataType, :primaryKey)"; 4 BeanPropertySqlParameterSource paramSource = new BeanPropertySqlParameterSource(physicColumn); 5 paramSource.registerSqlType("dataType", Types.VARCHAR); 6 this.getNamedParameterJdbcTemplate().update(sql, paramSource); 7 }
另一个解决方法是继承BeanPropertySqlParameterSource,在子类中覆盖getSqlType()方法,其中先调用父类的getSqlType(),如果没有找到列对应的SQL类型,并且这个列对应对象为枚举类型,则返回Varchar2, 在使用上子类和BeanPropertySqlParameterSource完全一样,但是提供了对枚举类型的支持,代码如下
1 public class MyBeanPropertySqlParameterSource extends BeanPropertySqlParameterSource { 2 3 public MyBeanPropertySqlParameterSource(Object object) { 4 super(object); 5 } 6 @Override 7 public int getSqlType(String var) { 8 int sqlType = super.getSqlType(var); 9 if (sqlType == TYPE_UNKNOWN && hasValue(var)) { 10 if (getValue(var).getClass().isEnum()) { 11 sqlType = Types.VARCHAR; 12 } 13 } 14 return sqlType; 15 } 16 }
1 public void insertPhysicColumn(MetaPhysicColumn physicColumn) { 2 String sql = "insert into meta_physic_column (id, name, description, table_id, data_type, primary_key) values( :id, :name, :description, :tableId, :dataType, :primaryKey)"; 3 SqlParameterSource paramSource = new MyBeanPropertySqlParameterSource(physicColumn); 4 this.getNamedParameterJdbcTemplate().update(sql, paramSource); 5 }
ps:对于boolean类型,BeanPropertySqlParameterSource将其映射为SQL的varchar2,将表结构对应类型设为number会报错;从数据库读取varchar2类型到boolean类型时,JdbcTemplate只能识别0和1,其他字符同样会报错。
使用NamedParameterJdbcTemplate向oracle插入枚举类型数据
标签:.exe sla temp frame 定义 date() end 匹配 error
热心网友 时间:2022-04-10 10:03
1.是否有驱动,并且是否正确使用热心网友 时间:2022-04-10 11:21
驱动是mysql的吗? 驱动改了么?热心网友 时间:2022-04-10 12:56
有没有装jdbc for sql 的驱动,如果装了看看是否指定对了