Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://docs.oracle.com/javase/7/docs/api/java/sql/ResultSet.html#getArray(java.lang.String)
似乎没有提到这种可能性。
SQLException不。如果列不存在,它会抛出。
SQLException
如果您正在考虑该列存在并且其所有值都为空,那么它将返回一个空值数组。
是的,如果该列在数据库中为 NULL,则 ResultSet::getArray 将返回 null。