java.sql.SQLException: Column index out of range.
Posted *乐途*
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.sql.SQLException: Column index out of range.相关的知识,希望对你有一定的参考价值。
public <E> List<E> selectList(Mapper mapper, Connection conn){
PreparedStatement pstm = null;
ResultSet rs = null;
try{
String queryString = mapper.getQueryString();
String resultType = mapper.getResultType();
Class domainClass = Class.forName(resultType);
pstm = conn.prepareStatement(queryString);
rs = pstm.executeQuery();
List<E> list = new ArrayList<E>();
while(rs.next()){
E obj = (E)domainClass.newInstance();
ResultSetMetaData rsmd = rs.getMetaData();
int columnCount = rsmd.getColumnCount();
System.out.println(columnCount);
for(int i =0 ;i<=columnCount;i++){
//获取每列的名
String columnName = rsmd.getColumnName(i);
//获取每列值
Object columnValue = rs.getObject(columnName);
//给obj赋值,使用的是java内省机制(借助PropertyDescriptor实现属性的封装)
PropertyDescriptor pd = new PropertyDescriptor(columnName,domainClass);
Method writeMethod = pd.getWriteMethod();
writeMethod.invoke(obj,columnValue);
}
list.add(obj);
}
return list;
}catch (Exception e){
throw new RuntimeException(e);
}
}
这样会报错
java.sql.SQLException: Column index out of range.
解决办法
以上是关于java.sql.SQLException: Column index out of range.的主要内容,如果未能解决你的问题,请参考以下文章
java.sql.SQLException:getShort() 的值无效 - ''
java.sql.SQLException: SQL 语句在 org.hsqldb.jdbc.JDBCUtil.sqlException 处关闭
Oracle DB:java.sql.SQLException:关闭连接
Cause: java.sql.SQLException: 请求的转换无效 ; uncategorized SQLException for SQL []; SQL state [99999]; er