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

本文介绍了解决Microsoft ODBC SQL Server驱动中遇到的无效描述符索引问题的方法。通过将查询语句从通配符选择更改为指定列名,并调整Java代码中的ResultSet处理方式来解决此问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

[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
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值