java create array_如何在使用createArrayOf()方法时纠正'java.sql.SQLFeatureNotSupportedException'...
我的代码如下:PreparedStatement pstm = con.prepareStatement("insert into parameter(Parameter) values(?)");Array a = con.createArrayOf("TEXT",s1);pstm.setArray(1,a);pstm.executeUpdate();堆栈跟踪如下:Exception in th...