本文介绍了如何检查ResultSet是否包含特定命名的字段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
拥有 rs
,java.sql.ResultSet的一个实例,如何检查它是否包含一个名为theColumn的列?
Having rs
, an instance of java.sql.ResultSet, how to check that it contains a column named "theColumn"?
推荐答案
你可以使用迭代ResultSet列,查看列名是否与指定的列名匹配。
You can use ResultSetMetaData to iterate through the ResultSet columns and see if the column name matches your specified column name.
示例:
ResultSetMetaData rsMetaData = rs.getMetaData();
int numberOfColumns = rsMetaData.getColumnCount();
// get the column names; column indexes start from 1
for (int i = 1; i < numberOfColumns + 1; i++) {
String columnName = rsMetaData.getColumnName(i);
// Get the name of the column's table name
if ("theColumn".equals(columnName)) {
System.out.println("Bingo!");
}
}
这篇关于如何检查ResultSet是否包含特定命名的字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!