我正在尝试将 SQL 字符串数组绑定到准备好的语句,并且对于某些数据库字符集,数组的值变为空。如果我绑定简单的字符串(不在数组中),它就可以工作。
如果字符集(v$nls_parameters 中的 NLS_CHARACTERSET)是 AL32UTF8,它可以正常工作。如果是 WE8ISO8859P15,那么我可以绑定字符串,但不能绑定字符串数组。不同之处似乎在于 Oracle JDBC 具有支持转换的特定字符集列表,而 ISO-8859-15 不是其中的一部分。
这解释了部分问题,因为当它在数据库中发现它时,它会将所有字符串转换为 null。但是当字符串不在数组中时转换确实有效......所以我很困惑。
我的整个测试如下。我使用的表类型定义为create type t_v4000_table as table of varchar2(4000);
Connection connection;
@Before
public void setup() throws SQLException {
OracleDataSource ds = new OracleDataSource();
ds.setUser("aaa");
ds.setPassword("a");
ds.setURL("jdbc:oracle:thin:@server:1521:orcl");
connection = ds.getConnection();
}
@Test
// works with both AL32UTF8 and WE8ISO8859P15
public void testScalar() throws SQLException {
CallableStatement stmt = connection.prepareCall("declare a varchar2(4000) := ?; "
+ "begin if a is null then raise_application_error(-20000,'null'); end if; end;");
stmt.setString(1, "a");
stmt.execute();
}
@Test
// works only with AL32UTF8
public void testArray() throws SQLException {
ArrayDescriptor descriptor = ArrayDescriptor.createDescriptor("T_V4000_TABLE", connection);
String[] array = new String[] {"a"};
Array sqlArray = new ARRAY(descriptor, connection, array);
CallableStatement stmt = connection.prepareCall("declare a t_v4000_table := ?; " +
"begin if a(1) is null then raise_application_error(-20000,'null'); end if; end;");
stmt.setArray(1, sqlArray);
stmt.execute();
}
我怀疑我在声明和绑定数组的方式上做错了,但我不知道是什么。任何的想法?