本文介绍了从java.sql.ResultSet中检索列名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 java.sql.ResultSet 有一种方法可以使用以下方法将列的名称作为 String 获取列的索引?我看了一下API文档,但是找不到任何东西。

With java.sql.ResultSet is there a way to get a column's name as a String by using the column's index? I had a look through the API doc but I can't find anything.

推荐答案

您可以从 ResultSet 元数据中获取此信息。请参阅

You can get this info from the ResultSet metadata. See ResultSetMetaData

例如

 ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2");
 ResultSetMetaData rsmd = rs.getMetaData();
 String name = rsmd.getColumnName(1);

您可以从那里获取列名。如果你这样做

and you can get the column name from there. If you do

select x as y from table

然后 rsmd.getColumnLabel()也会获取检索到的标签名称。

then rsmd.getColumnLabel() will get you the retrieved label name too.

这篇关于从java.sql.ResultSet中检索列名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 21:34
查看更多