gpt4 book ai didi

java - 使用 getColumnName() 或 getColumnLabel() 作为 getString()?

转载 作者:行者123 更新时间:2023-11-30 01:51:05 24 4
gpt4 key购买 nike

我遇到了以前从未见过的 SAS jdbc 驱动程序的问题,并且想知道正确的 JDBC 行为是什么。

假设我有一些ResultSetMetaData:

metadata.getColumnName(index) -> col1
metadata.getColumnLabel(index) -> Column1

这将是运行此查询时的 SQL 结果:

SELECT col1 AS Column1

当从ResultSet获取值时,我希望使用这个:

rs.getString("Column1") 

但是,我似乎必须使用:

rs.getString("col1")

这是可以预料到的吗?我的假设哪里错了?或者这是特定于驱动程序的行为?

最佳答案

在 JDBC 中,您可以通过列标签(别名)而不是列名称来检索结果集的值。在您问题的代码中,检索值的正确方法是使用 rs.getString("Column1") (或 - 因为处理时不区分大小写 - rs.getString("COLUMN1") )

这已记录在 API 中,如所有 String基于 setter/getter 有以下文档:

Parameters:

columnLabel - the label for the column specified with the SQL AS clause. If the SQL AS clause was not specified, then the label is the name of the column

从历史上看,JDBC 3 及更早版本并没有清楚地区分列标签和列名称,直到今天 - 导致驱动程序要求您通过列名称获取,或者允许您通过列名称或标签获取两者,或从 ResultSetMetaData.getColumnLabel(int) 返回列名或 ResultSetMetaData.getColumnName(int) 中的列标签,或者有配置选项来设置要使用的行为。

关于java - 使用 getColumnName() 或 getColumnLabel() 作为 getString()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56017204/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com