我查询information_schema.columns
表在我的PostgreSQL数据库。 使用表名,结果集中发现的所有列名,类型,以及它是否为空(除了主键,“ID”)。 这是正在使用的查询:
SELECT column_name, is_nullable,data_type FROM information_schema.columns
WHERE lower(table_name) = lower('TABLE1') AND column_name != 'id'
ORDER BY ordinal_position;
我对这些结果的字符串数组,我试图用的ResultSet方法getArray(String columnLabel)
以避免通过结果循环。 我想存储在字符串数组返回数组,却得到了一个类型不匹配错误
Type mismatch: cannot convert from Array to String[]
有没有办法在SQL Array对象转换或强制转换为String []?
相关的代码:
String[] columnName, type, nullable;
//Get Field Names, Type, & Nullability
String query = "SELECT column_name, is_nullable,data_type FROM information_schema.columns "
+ "WHERE lower(table_name) = lower('"+tableName+"') AND column_name != 'id' "
+ "ORDER BY ordinal_position";
try{
ResultSet rs = Query.executeQueryWithRS(c, query);
columnName = rs.getArray(rs.getArray("column_name"));
type = rs.getArray("data_type");
nullable = rs.getArray("is_nullable");
}catch (Exception e) {
e.printStackTrace();
}