IDEMPIERE-5076 Move/Copy client doesn't work in oracle (#2135)
This commit is contained in:
parent
620a528a98
commit
8dfb29c91d
|
@ -857,6 +857,8 @@ public final class DB
|
|||
pstmt.setBytes(index, (byte[]) param);
|
||||
else if (param instanceof Clob)
|
||||
pstmt.setClob(index, (Clob) param);
|
||||
else if (param.getClass().getName().equals("oracle.sql.BLOB"))
|
||||
pstmt.setObject(index, param);
|
||||
else
|
||||
throw new DBException("Unknown parameter type "+index+" - "+param);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue