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.
我有一个使用 JDBI(JDBC 包装器)来访问 PostgreSQL 数据库的 java 程序。其中一列是数组数据类型(mycolumn integer[])。
(mycolumn integer[])
我在我的映射器类中使用什么?我认为resultSet.getArray("mycolumn")这是正确的做法,但我不确定如何从java.sql.Array返回的对象中获取数据。
resultSet.getArray("mycolumn")
java.sql.Array
有关如何执行此操作的任何提示或良好链接?
Array array = resultSet.getArray("mycolumn"); return nonNull(array) ? (Integer[])array.getArray() : null ;