OPENJPA-2689 prevent IllegalArgumentException with package scoped OraclePreparedStatementWrapper classes

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1784577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Struberg 2017-02-27 15:00:22 +00:00
parent 635dd436cf
commit 8567a5e5c2
1 changed files with 7 additions and 3 deletions

View File

@ -602,9 +602,13 @@ public class OracleDictionary
getInnermostDelegate();
if (isOraclePreparedStatement(inner)) {
try {
inner.getClass().getMethod("setFixedCHAR",
new Class[]{ int.class, String.class }).
invoke(inner, new Object[]{ new Integer(idx), val });
Method setFixedCharMethod = inner.getClass().getMethod("setFixedCHAR",
new Class[]{int.class, String.class});
if (!setFixedCharMethod.isAccessible()) {
setFixedCharMethod.setAccessible(true);
}
setFixedCharMethod.invoke(inner, new Object[]{ new Integer(idx), val });
return;
} catch (Exception e) {
log.warn(e);