'无效的描述符索引'解决方法

[Microsoft][ODBC SQL Server Driver]无效的描述符索引 
一般出现这个问题是查询语句写为
select * from table_a
改为
select col_1,col_2,col_3 from table_a
 然后在相应的java代码里写
System.out.println(rs.getString(1);//col_1
System.out.println(rs.getString(2);//col_2
System.out.println(rs.getString(3);//col_3
注意:
1.第一列从1开始记数;
2.使用的顺序跟上面检索的顺序一致;
3.此处的1,2,3不要加引号
4.当然也可以改为rs.getString("col_1")
附ResultSet
String getString(int columnIndex) throws SQLException;
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
Parameters:
columnIndex the first column is 1, the second is 2, ...
Returns:
the column value; if the value is SQL NULL, the value returned is null
Throws:
SQLException if a database access error occurs
String getString(String columnName) throws SQLException;

Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

Parameters:
columnName the SQL name of the column
Returns:
the column value; if the value is SQL NULL, the value returned is null
Throws:
SQLException if a database access error occurs
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值