@@ -100,7 +100,7 @@ public void run(Connection conn) throws SomeTestsFailedException, SQLException {
100100 try {
101101 callableStatement = conn .prepareCall (
102102 "BEGIN " +
103- "ut_runner.run(" +
103+ "ut_runner.run(" +
104104 "a_paths => ?, " +
105105 "a_reporters => ?, " +
106106 "a_color_console => " + colorConsoleStr + ", " +
@@ -110,49 +110,49 @@ public void run(Connection conn) throws SomeTestsFailedException, SQLException {
110110 "a_include_objects => ?, " +
111111 "a_exclude_objects => ?, " +
112112 "a_fail_on_errors => " + failOnErrors + "); " +
113- "END;" );
113+ "END;" );
114114
115115 int paramIdx = 0 ;
116116
117117 callableStatement .setArray (
118- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .pathList .toArray ()));
118+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .pathList .toArray ()));
119119
120120 callableStatement .setArray (
121- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_REPORTERS , this .reporterList .toArray ()));
121+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_REPORTERS , this .reporterList .toArray ()));
122122
123123 if (this .coverageSchemes .isEmpty ()) {
124124 callableStatement .setNull (++paramIdx , Types .ARRAY , CustomTypes .UT_VARCHAR2_LIST );
125125 } else {
126126 callableStatement .setArray (
127- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .coverageSchemes .toArray ()));
127+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .coverageSchemes .toArray ()));
128128 }
129129
130130 if (this .sourceFiles .isEmpty ()) {
131131 callableStatement .setNull (++paramIdx , Types .ARRAY , CustomTypes .UT_VARCHAR2_LIST );
132132 } else {
133133 callableStatement .setArray (
134- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .sourceFiles .toArray ()));
134+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .sourceFiles .toArray ()));
135135 }
136136
137137 if (this .testFiles .isEmpty ()) {
138138 callableStatement .setNull (++paramIdx , Types .ARRAY , CustomTypes .UT_VARCHAR2_LIST );
139139 } else {
140140 callableStatement .setArray (
141- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .testFiles .toArray ()));
141+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .testFiles .toArray ()));
142142 }
143143
144144 if (this .includeObjects .isEmpty ()) {
145145 callableStatement .setNull (++paramIdx , Types .ARRAY , CustomTypes .UT_VARCHAR2_LIST );
146146 } else {
147147 callableStatement .setArray (
148- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .includeObjects .toArray ()));
148+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .includeObjects .toArray ()));
149149 }
150150
151151 if (this .excludeObjects .isEmpty ()) {
152152 callableStatement .setNull (++paramIdx , Types .ARRAY , CustomTypes .UT_VARCHAR2_LIST );
153153 } else {
154154 callableStatement .setArray (
155- ++paramIdx , oraConn .createARRAY (CustomTypes .UT_VARCHAR2_LIST , this .excludeObjects .toArray ()));
155+ ++paramIdx , oraConn .createOracleArray (CustomTypes .UT_VARCHAR2_LIST , this .excludeObjects .toArray ()));
156156 }
157157
158158 callableStatement .execute ();
0 commit comments