Commit ed05eaac by s_guodong

去掉多的jar

parent 09b1071c
......@@ -18,14 +18,6 @@
</dependency>
<!--数据库相关-->
<dependency>
<groupId>com.experlog</groupId>
<artifactId>xapool</artifactId>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
</dependency>
<dependency>
<groupId>org.ow2.jotm</groupId>
<artifactId>jotm-core</artifactId>
</dependency>
......
......@@ -157,7 +157,8 @@ public class SqlFilter extends AbsFilter {
if (direction.equals("OUT") || direction.equals("INOUT")) {
String argValue = argumentDef.getType().toUpperCase();
if (argValue.equals("CURSOR")) {
params[i][0] = oracle.jdbc.OracleTypes.CURSOR;
/*oracle.jdbc.OracleTypes.CURSOR*/
params[i][0] = -10;
} else {
params[i][0] = getReflectField(Types.class, argValue);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment