1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
package org.apache.commons.beanutils; |
20 |
|
|
21 |
|
|
22 |
|
import java.io.InputStream; |
23 |
|
import java.io.Reader; |
24 |
|
import java.lang.reflect.InvocationHandler; |
25 |
|
import java.lang.reflect.Method; |
26 |
|
import java.lang.reflect.Proxy; |
27 |
|
import java.math.BigDecimal; |
28 |
|
import java.net.URL; |
29 |
|
import java.sql.Array; |
30 |
|
import java.sql.Blob; |
31 |
|
import java.sql.Clob; |
32 |
|
import java.sql.Date; |
33 |
|
import java.sql.Ref; |
34 |
|
import java.sql.ResultSet; |
35 |
|
import java.sql.ResultSetMetaData; |
36 |
|
import java.sql.SQLException; |
37 |
|
import java.sql.SQLWarning; |
38 |
|
import java.sql.Statement; |
39 |
|
import java.sql.Time; |
40 |
|
import java.sql.Timestamp; |
41 |
|
import java.util.Calendar; |
42 |
|
import java.util.Map; |
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
|
47 |
|
@link |
48 |
|
|
49 |
|
@author |
50 |
|
@version |
51 |
|
|
52 |
|
|
|
|
| 26.9% |
Uncovered Elements: 291 (398) |
Complexity: 172 |
Complexity Density: 0.86 |
|
53 |
|
public class TestResultSet implements InvocationHandler { |
54 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
62 |
|
protected int row = 0; |
63 |
|
|
64 |
|
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
protected long timestamp = System.currentTimeMillis(); |
69 |
|
|
70 |
|
|
71 |
|
|
72 |
|
|
73 |
|
protected ResultSetMetaData resultSetMetaData; |
74 |
|
|
75 |
|
|
76 |
|
@link |
77 |
|
|
78 |
|
@return |
79 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
19
|
public static ResultSet createProxy() {... |
81 |
19
|
return TestResultSet.createProxy(new TestResultSet()); |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
@link |
86 |
|
|
87 |
|
@param |
88 |
|
@return |
89 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
90 |
20
|
public static ResultSet createProxy(InvocationHandler invocationHandler) {... |
91 |
20
|
ClassLoader classLoader = ResultSet.class.getClassLoader(); |
92 |
20
|
Class[] interfaces = new Class[] { ResultSet.class }; |
93 |
20
|
return (ResultSet)Proxy.newProxyInstance(classLoader, interfaces, invocationHandler); |
94 |
|
} |
95 |
|
|
96 |
|
|
97 |
|
|
98 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
19
|
public TestResultSet() {... |
100 |
19
|
this(TestResultSetMetaData.createProxy()); |
101 |
|
} |
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
|
106 |
|
@param |
107 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
108 |
20
|
public TestResultSet(ResultSetMetaData resultSetMetaData) {... |
109 |
20
|
this.resultSetMetaData = resultSetMetaData; |
110 |
|
} |
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
@param |
116 |
|
@param |
117 |
|
@param |
118 |
|
@return |
119 |
|
@throws |
120 |
|
|
|
|
| 75.7% |
Uncovered Elements: 9 (37) |
Complexity: 10 |
Complexity Density: 0.53 |
|
121 |
866
|
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {... |
122 |
866
|
String methodName = method.getName(); |
123 |
866
|
if ("close".equals(methodName)) { |
124 |
0
|
return null; |
125 |
866
|
} if ("getMetaData".equals(methodName)) { |
126 |
20
|
return getMetaData(); |
127 |
846
|
} if ("getObject".equals(methodName)) { |
128 |
590
|
return getObject(columnName(args[0])); |
129 |
256
|
} if ("getDate".equals(methodName)) { |
130 |
58
|
return getDate(columnName(args[0])); |
131 |
198
|
} if ("getTime".equals(methodName)) { |
132 |
58
|
return getTime(columnName(args[0])); |
133 |
140
|
} if ("getTimestamp".equals(methodName)) { |
134 |
58
|
return getTimestamp(columnName(args[0])); |
135 |
82
|
} if ("next".equals(methodName)) { |
136 |
82
|
return (next() ? Boolean.TRUE : Boolean.FALSE); |
137 |
0
|
} if ("updateObject".equals(methodName)) { |
138 |
0
|
updateObject((String)args[0], args[1]); |
139 |
0
|
return null; |
140 |
|
} |
141 |
|
|
142 |
0
|
throw new UnsupportedOperationException(methodName + " not implemented"); |
143 |
|
} |
144 |
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
145 |
764
|
private String columnName(Object arg) throws SQLException {... |
146 |
764
|
if (arg instanceof Integer) { |
147 |
0
|
return resultSetMetaData.getColumnName(((Integer)arg).intValue()); |
148 |
|
} else { |
149 |
764
|
return (String)arg; |
150 |
|
} |
151 |
|
} |
152 |
|
|
153 |
|
|
154 |
|
|
155 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
156 |
0
|
public void close() throws SQLException {... |
157 |
|
|
158 |
|
} |
159 |
|
|
160 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
161 |
20
|
public ResultSetMetaData getMetaData() throws SQLException {... |
162 |
20
|
return resultSetMetaData; |
163 |
|
} |
164 |
|
|
165 |
|
|
|
|
| 80.3% |
Uncovered Elements: 12 (61) |
Complexity: 16 |
Complexity Density: 0.52 |
|
166 |
589
|
public Object getObject(String columnName) throws SQLException {... |
167 |
589
|
if (row > 5) { |
168 |
0
|
throw new SQLException("No current row"); |
169 |
|
} |
170 |
589
|
if ("bigDecimalProperty".equals(columnName)) { |
171 |
60
|
return (new BigDecimal(123.45)); |
172 |
529
|
} else if ("booleanProperty".equals(columnName)) { |
173 |
58
|
if ((row % 2) == 0) { |
174 |
23
|
return (Boolean.TRUE); |
175 |
|
} else { |
176 |
35
|
return (Boolean.FALSE); |
177 |
|
} |
178 |
471
|
} else if ("byteProperty".equals(columnName)) { |
179 |
58
|
return (new Byte((byte) row)); |
180 |
413
|
} else if ("dateProperty".equals(columnName)) { |
181 |
1
|
return (new Date(timestamp)); |
182 |
412
|
} else if ("doubleProperty".equals(columnName)) { |
183 |
58
|
return (new Double(321.0)); |
184 |
354
|
} else if ("floatProperty".equals(columnName)) { |
185 |
58
|
return (new Float((float) 123.0)); |
186 |
296
|
} else if ("intProperty".equals(columnName)) { |
187 |
60
|
return (new Integer(100 + row)); |
188 |
236
|
} else if ("longProperty".equals(columnName)) { |
189 |
58
|
return (new Long(200 + row)); |
190 |
178
|
} else if ("nullProperty".equals(columnName)) { |
191 |
60
|
return (null); |
192 |
118
|
} else if ("shortProperty".equals(columnName)) { |
193 |
58
|
return (new Short((short) (300 + row))); |
194 |
60
|
} else if ("stringProperty".equals(columnName)) { |
195 |
60
|
return ("This is a string"); |
196 |
0
|
} else if ("timeProperty".equals(columnName)) { |
197 |
0
|
return (new Time(timestamp)); |
198 |
0
|
} else if ("timestampProperty".equals(columnName)) { |
199 |
0
|
return (new Timestamp(timestamp)); |
200 |
|
} else { |
201 |
0
|
throw new SQLException("Unknown column name " + columnName); |
202 |
|
} |
203 |
|
} |
204 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
205 |
58
|
public Date getDate(String columnName) throws SQLException {... |
206 |
58
|
return (new Date(timestamp)); |
207 |
|
} |
208 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
209 |
58
|
public Time getTime(String columnName) throws SQLException {... |
210 |
58
|
return (new Time(timestamp)); |
211 |
|
} |
212 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
213 |
58
|
public Timestamp getTimestamp(String columnName) throws SQLException {... |
214 |
58
|
return (new Timestamp(timestamp)); |
215 |
|
} |
216 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
217 |
82
|
public boolean next() throws SQLException {... |
218 |
82
|
if (row++ < 5) { |
219 |
70
|
return (true); |
220 |
|
} else { |
221 |
12
|
return (false); |
222 |
|
} |
223 |
|
} |
224 |
|
|
225 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
226 |
0
|
public void updateObject(String columnName, Object x)... |
227 |
|
throws SQLException { |
228 |
0
|
if (row > 5) { |
229 |
0
|
throw new SQLException("No current row"); |
230 |
|
} |
231 |
|
|
232 |
|
} |
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
238 |
0
|
public boolean absolute(int row) throws SQLException {... |
239 |
0
|
throw new UnsupportedOperationException(); |
240 |
|
} |
241 |
|
|
242 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
243 |
0
|
public void afterLast() throws SQLException {... |
244 |
0
|
throw new UnsupportedOperationException(); |
245 |
|
} |
246 |
|
|
247 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
248 |
0
|
public void beforeFirst() throws SQLException {... |
249 |
0
|
throw new UnsupportedOperationException(); |
250 |
|
} |
251 |
|
|
252 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
253 |
0
|
public void cancelRowUpdates() throws SQLException {... |
254 |
0
|
throw new UnsupportedOperationException(); |
255 |
|
} |
256 |
|
|
257 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
258 |
0
|
public void clearWarnings() throws SQLException {... |
259 |
0
|
throw new UnsupportedOperationException(); |
260 |
|
} |
261 |
|
|
262 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
263 |
0
|
public void deleteRow() throws SQLException {... |
264 |
0
|
throw new UnsupportedOperationException(); |
265 |
|
} |
266 |
|
|
267 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
268 |
0
|
public int findColumn(String columnName) throws SQLException {... |
269 |
0
|
throw new UnsupportedOperationException(); |
270 |
|
} |
271 |
|
|
272 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
273 |
0
|
public boolean first() throws SQLException {... |
274 |
0
|
throw new UnsupportedOperationException(); |
275 |
|
} |
276 |
|
|
277 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
278 |
0
|
public Array getArray(int columnIndex) throws SQLException {... |
279 |
0
|
throw new UnsupportedOperationException(); |
280 |
|
} |
281 |
|
|
282 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
283 |
0
|
public Array getArray(String columnName) throws SQLException {... |
284 |
0
|
throw new UnsupportedOperationException(); |
285 |
|
} |
286 |
|
|
287 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
288 |
0
|
public InputStream getAsciiStream(int columnIndex) throws SQLException {... |
289 |
0
|
throw new UnsupportedOperationException(); |
290 |
|
} |
291 |
|
|
292 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
293 |
0
|
public InputStream getAsciiStream(String columnName) throws SQLException {... |
294 |
0
|
throw new UnsupportedOperationException(); |
295 |
|
} |
296 |
|
|
297 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
298 |
0
|
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {... |
299 |
0
|
throw new UnsupportedOperationException(); |
300 |
|
} |
301 |
|
|
302 |
|
@deprecated |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
303 |
0
|
public BigDecimal getBigDecimal(int columnIndex, int scale)... |
304 |
|
throws SQLException { |
305 |
0
|
throw new UnsupportedOperationException(); |
306 |
|
} |
307 |
|
|
308 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
309 |
0
|
public BigDecimal getBigDecimal(String columnName) throws SQLException {... |
310 |
0
|
throw new UnsupportedOperationException(); |
311 |
|
} |
312 |
|
|
313 |
|
|
314 |
|
@deprecated |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
315 |
0
|
public BigDecimal getBigDecimal(String columnName, int scale)... |
316 |
|
throws SQLException { |
317 |
0
|
throw new UnsupportedOperationException(); |
318 |
|
} |
319 |
|
|
320 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
321 |
0
|
public InputStream getBinaryStream(int columnIndex) throws SQLException {... |
322 |
0
|
throw new UnsupportedOperationException(); |
323 |
|
} |
324 |
|
|
325 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
326 |
0
|
public InputStream getBinaryStream(String columnName) throws SQLException {... |
327 |
0
|
throw new UnsupportedOperationException(); |
328 |
|
} |
329 |
|
|
330 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
331 |
0
|
public Blob getBlob(int columnIndex) throws SQLException {... |
332 |
0
|
throw new UnsupportedOperationException(); |
333 |
|
} |
334 |
|
|
335 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
336 |
0
|
public Blob getBlob(String columnName) throws SQLException {... |
337 |
0
|
throw new UnsupportedOperationException(); |
338 |
|
} |
339 |
|
|
340 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
341 |
0
|
public boolean getBoolean(int columnIndex) throws SQLException {... |
342 |
0
|
throw new UnsupportedOperationException(); |
343 |
|
} |
344 |
|
|
345 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
346 |
0
|
public boolean getBoolean(String columnName) throws SQLException {... |
347 |
0
|
throw new UnsupportedOperationException(); |
348 |
|
} |
349 |
|
|
350 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
351 |
0
|
public byte getByte(int columnIndex) throws SQLException {... |
352 |
0
|
throw new UnsupportedOperationException(); |
353 |
|
} |
354 |
|
|
355 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
356 |
0
|
public byte getByte(String columnName) throws SQLException {... |
357 |
0
|
throw new UnsupportedOperationException(); |
358 |
|
} |
359 |
|
|
360 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
361 |
0
|
public byte[] getBytes(int columnIndex) throws SQLException {... |
362 |
0
|
throw new UnsupportedOperationException(); |
363 |
|
} |
364 |
|
|
365 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
366 |
0
|
public byte[] getBytes(String columnName) throws SQLException {... |
367 |
0
|
throw new UnsupportedOperationException(); |
368 |
|
} |
369 |
|
|
370 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
371 |
0
|
public Reader getCharacterStream(int columnIndex)... |
372 |
|
throws SQLException { |
373 |
0
|
throw new UnsupportedOperationException(); |
374 |
|
} |
375 |
|
|
376 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
377 |
0
|
public Reader getCharacterStream(String columnName) throws SQLException {... |
378 |
0
|
throw new UnsupportedOperationException(); |
379 |
|
} |
380 |
|
|
381 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
382 |
0
|
public Clob getClob(int columnIndex) throws SQLException {... |
383 |
0
|
throw new UnsupportedOperationException(); |
384 |
|
} |
385 |
|
|
386 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
387 |
0
|
public Clob getClob(String columnName) throws SQLException {... |
388 |
0
|
throw new UnsupportedOperationException(); |
389 |
|
} |
390 |
|
|
391 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
392 |
0
|
public int getConcurrency() throws SQLException {... |
393 |
0
|
throw new UnsupportedOperationException(); |
394 |
|
} |
395 |
|
|
396 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
397 |
0
|
public String getCursorName() throws SQLException {... |
398 |
0
|
throw new UnsupportedOperationException(); |
399 |
|
} |
400 |
|
|
401 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
402 |
0
|
public Date getDate(int columnIndex) throws SQLException {... |
403 |
0
|
throw new UnsupportedOperationException(); |
404 |
|
} |
405 |
|
|
406 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
407 |
0
|
public Date getDate(int columnIndex, Calendar cal) throws SQLException {... |
408 |
0
|
throw new UnsupportedOperationException(); |
409 |
|
} |
410 |
|
|
411 |
|
|
412 |
|
|
413 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
414 |
0
|
public Date getDate(String columnName, Calendar cal) throws SQLException {... |
415 |
0
|
throw new UnsupportedOperationException(); |
416 |
|
} |
417 |
|
|
418 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
419 |
0
|
public double getDouble(int columnIndex) throws SQLException {... |
420 |
0
|
throw new UnsupportedOperationException(); |
421 |
|
} |
422 |
|
|
423 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
424 |
0
|
public double getDouble(String columnName) throws SQLException {... |
425 |
0
|
throw new UnsupportedOperationException(); |
426 |
|
} |
427 |
|
|
428 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
429 |
0
|
public int getFetchDirection() throws SQLException {... |
430 |
0
|
throw new UnsupportedOperationException(); |
431 |
|
} |
432 |
|
|
433 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
434 |
0
|
public int getFetchSize() throws SQLException {... |
435 |
0
|
throw new UnsupportedOperationException(); |
436 |
|
} |
437 |
|
|
438 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
439 |
0
|
public float getFloat(int columnIndex) throws SQLException {... |
440 |
0
|
throw new UnsupportedOperationException(); |
441 |
|
} |
442 |
|
|
443 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
444 |
0
|
public float getFloat(String columnName) throws SQLException {... |
445 |
0
|
throw new UnsupportedOperationException(); |
446 |
|
} |
447 |
|
|
448 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
449 |
0
|
public int getInt(int columnIndex) throws SQLException {... |
450 |
0
|
throw new UnsupportedOperationException(); |
451 |
|
} |
452 |
|
|
453 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
454 |
0
|
public int getInt(String columnName) throws SQLException {... |
455 |
0
|
throw new UnsupportedOperationException(); |
456 |
|
} |
457 |
|
|
458 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
459 |
0
|
public long getLong(int columnIndex) throws SQLException {... |
460 |
0
|
throw new UnsupportedOperationException(); |
461 |
|
} |
462 |
|
|
463 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
464 |
0
|
public long getLong(String columnName) throws SQLException {... |
465 |
0
|
throw new UnsupportedOperationException(); |
466 |
|
} |
467 |
|
|
468 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
469 |
0
|
public Object getObject(int columnIndex) throws SQLException {... |
470 |
0
|
throw new UnsupportedOperationException(); |
471 |
|
} |
472 |
|
|
473 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
474 |
0
|
public Object getObject(int columnIndex, Map map) throws SQLException {... |
475 |
0
|
throw new UnsupportedOperationException(); |
476 |
|
} |
477 |
|
|
478 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
479 |
0
|
public Object getObject(String columnName, Map map) throws SQLException {... |
480 |
0
|
throw new UnsupportedOperationException(); |
481 |
|
} |
482 |
|
|
483 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
484 |
0
|
public Ref getRef(int columnIndex) throws SQLException {... |
485 |
0
|
throw new UnsupportedOperationException(); |
486 |
|
} |
487 |
|
|
488 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
489 |
0
|
public Ref getRef(String columnName) throws SQLException {... |
490 |
0
|
throw new UnsupportedOperationException(); |
491 |
|
} |
492 |
|
|
493 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
494 |
0
|
public int getRow() throws SQLException {... |
495 |
0
|
throw new UnsupportedOperationException(); |
496 |
|
} |
497 |
|
|
498 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
499 |
0
|
public short getShort(int columnIndex) throws SQLException {... |
500 |
0
|
throw new UnsupportedOperationException(); |
501 |
|
} |
502 |
|
|
503 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
504 |
0
|
public short getShort(String columnName) throws SQLException {... |
505 |
0
|
throw new UnsupportedOperationException(); |
506 |
|
} |
507 |
|
|
508 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
509 |
0
|
public Statement getStatement() throws SQLException {... |
510 |
0
|
throw new UnsupportedOperationException(); |
511 |
|
} |
512 |
|
|
513 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
514 |
0
|
public String getString(int columnIndex) throws SQLException {... |
515 |
0
|
throw new UnsupportedOperationException(); |
516 |
|
} |
517 |
|
|
518 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
519 |
0
|
public String getString(String columnName) throws SQLException {... |
520 |
0
|
throw new UnsupportedOperationException(); |
521 |
|
} |
522 |
|
|
523 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
524 |
0
|
public Time getTime(int columnIndex) throws SQLException {... |
525 |
0
|
throw new UnsupportedOperationException(); |
526 |
|
} |
527 |
|
|
528 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
529 |
0
|
public Time getTime(int columnIndex, Calendar cal) throws SQLException {... |
530 |
0
|
throw new UnsupportedOperationException(); |
531 |
|
} |
532 |
|
|
533 |
|
|
534 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
535 |
0
|
public Time getTime(String columnName, Calendar cal) throws SQLException {... |
536 |
0
|
throw new UnsupportedOperationException(); |
537 |
|
} |
538 |
|
|
539 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
540 |
0
|
public Timestamp getTimestamp(int columnIndex) throws SQLException {... |
541 |
0
|
throw new UnsupportedOperationException(); |
542 |
|
} |
543 |
|
|
544 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
545 |
0
|
public Timestamp getTimestamp(int columnIndex, Calendar cal)... |
546 |
|
throws SQLException { |
547 |
0
|
throw new UnsupportedOperationException(); |
548 |
|
} |
549 |
|
|
550 |
|
|
551 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
552 |
0
|
public Timestamp getTimestamp(String columnName, Calendar cal)... |
553 |
|
throws SQLException { |
554 |
0
|
throw new UnsupportedOperationException(); |
555 |
|
} |
556 |
|
|
557 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
558 |
0
|
public int getType() throws SQLException {... |
559 |
0
|
throw new UnsupportedOperationException(); |
560 |
|
} |
561 |
|
|
562 |
|
|
563 |
|
@deprecated |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
564 |
0
|
public InputStream getUnicodeStream(int columnIndex) throws SQLException {... |
565 |
0
|
throw new UnsupportedOperationException(); |
566 |
|
} |
567 |
|
|
568 |
|
|
569 |
|
@deprecated |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
570 |
0
|
public InputStream getUnicodeStream(String columnName) throws SQLException {... |
571 |
0
|
throw new UnsupportedOperationException(); |
572 |
|
} |
573 |
|
|
574 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
575 |
0
|
public URL getURL(int columnIndex) throws SQLException {... |
576 |
0
|
throw new UnsupportedOperationException(); |
577 |
|
} |
578 |
|
|
579 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
580 |
0
|
public URL getURL(String columnName) throws SQLException {... |
581 |
0
|
throw new UnsupportedOperationException(); |
582 |
|
} |
583 |
|
|
584 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
585 |
0
|
public SQLWarning getWarnings() throws SQLException {... |
586 |
0
|
throw new UnsupportedOperationException(); |
587 |
|
} |
588 |
|
|
589 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
590 |
0
|
public void insertRow() throws SQLException {... |
591 |
0
|
throw new UnsupportedOperationException(); |
592 |
|
} |
593 |
|
|
594 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
595 |
0
|
public boolean isAfterLast() throws SQLException {... |
596 |
0
|
throw new UnsupportedOperationException(); |
597 |
|
} |
598 |
|
|
599 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
600 |
0
|
public boolean isBeforeFirst() throws SQLException {... |
601 |
0
|
throw new UnsupportedOperationException(); |
602 |
|
} |
603 |
|
|
604 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
605 |
0
|
public boolean isFirst() throws SQLException {... |
606 |
0
|
throw new UnsupportedOperationException(); |
607 |
|
} |
608 |
|
|
609 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
610 |
0
|
public boolean isLast() throws SQLException {... |
611 |
0
|
throw new UnsupportedOperationException(); |
612 |
|
} |
613 |
|
|
614 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
615 |
0
|
public boolean last() throws SQLException {... |
616 |
0
|
throw new UnsupportedOperationException(); |
617 |
|
} |
618 |
|
|
619 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
620 |
0
|
public void moveToCurrentRow() throws SQLException {... |
621 |
0
|
throw new UnsupportedOperationException(); |
622 |
|
} |
623 |
|
|
624 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
625 |
0
|
public void moveToInsertRow() throws SQLException {... |
626 |
0
|
throw new UnsupportedOperationException(); |
627 |
|
} |
628 |
|
|
629 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
630 |
0
|
public boolean previous() throws SQLException {... |
631 |
0
|
throw new UnsupportedOperationException(); |
632 |
|
} |
633 |
|
|
634 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
635 |
0
|
public void refreshRow() throws SQLException {... |
636 |
0
|
throw new UnsupportedOperationException(); |
637 |
|
} |
638 |
|
|
639 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
640 |
0
|
public boolean relative(int rows) throws SQLException {... |
641 |
0
|
throw new UnsupportedOperationException(); |
642 |
|
} |
643 |
|
|
644 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
645 |
0
|
public boolean rowDeleted() throws SQLException {... |
646 |
0
|
throw new UnsupportedOperationException(); |
647 |
|
} |
648 |
|
|
649 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
650 |
0
|
public boolean rowInserted() throws SQLException {... |
651 |
0
|
throw new UnsupportedOperationException(); |
652 |
|
} |
653 |
|
|
654 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
655 |
0
|
public boolean rowUpdated() throws SQLException {... |
656 |
0
|
throw new UnsupportedOperationException(); |
657 |
|
} |
658 |
|
|
659 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
660 |
0
|
public void setFetchDirection(int direction) throws SQLException {... |
661 |
0
|
throw new UnsupportedOperationException(); |
662 |
|
} |
663 |
|
|
664 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
665 |
0
|
public void setFetchSize(int size) throws SQLException {... |
666 |
0
|
throw new UnsupportedOperationException(); |
667 |
|
} |
668 |
|
|
669 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
670 |
0
|
public void updateArray(int columnPosition, Array x)... |
671 |
|
throws SQLException { |
672 |
0
|
throw new UnsupportedOperationException(); |
673 |
|
} |
674 |
|
|
675 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
676 |
0
|
public void updateArray(String columnName, Array x)... |
677 |
|
throws SQLException { |
678 |
0
|
throw new UnsupportedOperationException(); |
679 |
|
} |
680 |
|
|
681 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
682 |
0
|
public void updateAsciiStream(int columnPosition, InputStream x, int len)... |
683 |
|
throws SQLException { |
684 |
0
|
throw new UnsupportedOperationException(); |
685 |
|
} |
686 |
|
|
687 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
688 |
0
|
public void updateAsciiStream(String columnName, InputStream x, int len)... |
689 |
|
throws SQLException { |
690 |
0
|
throw new UnsupportedOperationException(); |
691 |
|
} |
692 |
|
|
693 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
694 |
0
|
public void updateBigDecimal(int columnPosition, BigDecimal x)... |
695 |
|
throws SQLException { |
696 |
0
|
throw new UnsupportedOperationException(); |
697 |
|
} |
698 |
|
|
699 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
700 |
0
|
public void updateBigDecimal(String columnName, BigDecimal x)... |
701 |
|
throws SQLException { |
702 |
0
|
throw new UnsupportedOperationException(); |
703 |
|
} |
704 |
|
|
705 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
706 |
0
|
public void updateBinaryStream(int columnPosition, InputStream x, int len)... |
707 |
|
throws SQLException { |
708 |
0
|
throw new UnsupportedOperationException(); |
709 |
|
} |
710 |
|
|
711 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
712 |
0
|
public void updateBinaryStream(String columnName, InputStream x, int len)... |
713 |
|
throws SQLException { |
714 |
0
|
throw new UnsupportedOperationException(); |
715 |
|
} |
716 |
|
|
717 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
718 |
0
|
public void updateBlob(int columnPosition, Blob x)... |
719 |
|
throws SQLException { |
720 |
0
|
throw new UnsupportedOperationException(); |
721 |
|
} |
722 |
|
|
723 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
724 |
0
|
public void updateBlob(String columnName, Blob x)... |
725 |
|
throws SQLException { |
726 |
0
|
throw new UnsupportedOperationException(); |
727 |
|
} |
728 |
|
|
729 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
730 |
0
|
public void updateBoolean(int columnPosition, boolean x)... |
731 |
|
throws SQLException { |
732 |
0
|
throw new UnsupportedOperationException(); |
733 |
|
} |
734 |
|
|
735 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
736 |
0
|
public void updateBoolean(String columnName, boolean x)... |
737 |
|
throws SQLException { |
738 |
0
|
throw new UnsupportedOperationException(); |
739 |
|
} |
740 |
|
|
741 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
742 |
0
|
public void updateByte(int columnPosition, byte x)... |
743 |
|
throws SQLException { |
744 |
0
|
throw new UnsupportedOperationException(); |
745 |
|
} |
746 |
|
|
747 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
748 |
0
|
public void updateByte(String columnName, byte x)... |
749 |
|
throws SQLException { |
750 |
0
|
throw new UnsupportedOperationException(); |
751 |
|
} |
752 |
|
|
753 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
754 |
0
|
public void updateBytes(int columnPosition, byte x[])... |
755 |
|
throws SQLException { |
756 |
0
|
throw new UnsupportedOperationException(); |
757 |
|
} |
758 |
|
|
759 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
760 |
0
|
public void updateBytes(String columnName, byte x[])... |
761 |
|
throws SQLException { |
762 |
0
|
throw new UnsupportedOperationException(); |
763 |
|
} |
764 |
|
|
765 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
766 |
0
|
public void updateCharacterStream(int columnPosition, Reader x, int len)... |
767 |
|
throws SQLException { |
768 |
0
|
throw new UnsupportedOperationException(); |
769 |
|
} |
770 |
|
|
771 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
772 |
0
|
public void updateCharacterStream(String columnName, Reader x, int len)... |
773 |
|
throws SQLException { |
774 |
0
|
throw new UnsupportedOperationException(); |
775 |
|
} |
776 |
|
|
777 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
778 |
0
|
public void updateClob(int columnPosition, Clob x)... |
779 |
|
throws SQLException { |
780 |
0
|
throw new UnsupportedOperationException(); |
781 |
|
} |
782 |
|
|
783 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
784 |
0
|
public void updateClob(String columnName, Clob x)... |
785 |
|
throws SQLException { |
786 |
0
|
throw new UnsupportedOperationException(); |
787 |
|
} |
788 |
|
|
789 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
790 |
0
|
public void updateDate(int columnPosition, Date x)... |
791 |
|
throws SQLException { |
792 |
0
|
throw new UnsupportedOperationException(); |
793 |
|
} |
794 |
|
|
795 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
796 |
0
|
public void updateDate(String columnName, Date x)... |
797 |
|
throws SQLException { |
798 |
0
|
throw new UnsupportedOperationException(); |
799 |
|
} |
800 |
|
|
801 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
802 |
0
|
public void updateDouble(int columnPosition, double x)... |
803 |
|
throws SQLException { |
804 |
0
|
throw new UnsupportedOperationException(); |
805 |
|
} |
806 |
|
|
807 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
808 |
0
|
public void updateDouble(String columnName, double x)... |
809 |
|
throws SQLException { |
810 |
0
|
throw new UnsupportedOperationException(); |
811 |
|
} |
812 |
|
|
813 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
814 |
0
|
public void updateFloat(int columnPosition, float x)... |
815 |
|
throws SQLException { |
816 |
0
|
throw new UnsupportedOperationException(); |
817 |
|
} |
818 |
|
|
819 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
820 |
0
|
public void updateFloat(String columnName, float x)... |
821 |
|
throws SQLException { |
822 |
0
|
throw new UnsupportedOperationException(); |
823 |
|
} |
824 |
|
|
825 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
826 |
0
|
public void updateInt(int columnPosition, int x)... |
827 |
|
throws SQLException { |
828 |
0
|
throw new UnsupportedOperationException(); |
829 |
|
} |
830 |
|
|
831 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
832 |
0
|
public void updateInt(String columnName, int x)... |
833 |
|
throws SQLException { |
834 |
0
|
throw new UnsupportedOperationException(); |
835 |
|
} |
836 |
|
|
837 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
838 |
0
|
public void updateLong(int columnPosition, long x)... |
839 |
|
throws SQLException { |
840 |
0
|
throw new UnsupportedOperationException(); |
841 |
|
} |
842 |
|
|
843 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
844 |
0
|
public void updateLong(String columnName, long x)... |
845 |
|
throws SQLException { |
846 |
0
|
throw new UnsupportedOperationException(); |
847 |
|
} |
848 |
|
|
849 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
850 |
0
|
public void updateNull(int columnPosition)... |
851 |
|
throws SQLException { |
852 |
0
|
throw new UnsupportedOperationException(); |
853 |
|
} |
854 |
|
|
855 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
856 |
0
|
public void updateNull(String columnName)... |
857 |
|
throws SQLException { |
858 |
0
|
throw new UnsupportedOperationException(); |
859 |
|
} |
860 |
|
|
861 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
862 |
0
|
public void updateObject(int columnPosition, Object x)... |
863 |
|
throws SQLException { |
864 |
0
|
throw new UnsupportedOperationException(); |
865 |
|
} |
866 |
|
|
867 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
868 |
0
|
public void updateObject(int columnPosition, Object x, int scale)... |
869 |
|
throws SQLException { |
870 |
0
|
throw new UnsupportedOperationException(); |
871 |
|
} |
872 |
|
|
873 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
874 |
0
|
public void updateObject(String columnName, Object x, int scale)... |
875 |
|
throws SQLException { |
876 |
0
|
throw new UnsupportedOperationException(); |
877 |
|
} |
878 |
|
|
879 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
880 |
0
|
public void updateRef(int columnPosition, Ref x)... |
881 |
|
throws SQLException { |
882 |
0
|
throw new UnsupportedOperationException(); |
883 |
|
} |
884 |
|
|
885 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
886 |
0
|
public void updateRef(String columnName, Ref x)... |
887 |
|
throws SQLException { |
888 |
0
|
throw new UnsupportedOperationException(); |
889 |
|
} |
890 |
|
|
891 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
892 |
0
|
public void updateRow() throws SQLException {... |
893 |
0
|
throw new UnsupportedOperationException(); |
894 |
|
} |
895 |
|
|
896 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
897 |
0
|
public void updateShort(int columnPosition, short x)... |
898 |
|
throws SQLException { |
899 |
0
|
throw new UnsupportedOperationException(); |
900 |
|
} |
901 |
|
|
902 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
903 |
0
|
public void updateShort(String columnName, short x)... |
904 |
|
throws SQLException { |
905 |
0
|
throw new UnsupportedOperationException(); |
906 |
|
} |
907 |
|
|
908 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
909 |
0
|
public void updateString(int columnPosition, String x)... |
910 |
|
throws SQLException { |
911 |
0
|
throw new UnsupportedOperationException(); |
912 |
|
} |
913 |
|
|
914 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
915 |
0
|
public void updateString(String columnName, String x)... |
916 |
|
throws SQLException { |
917 |
0
|
throw new UnsupportedOperationException(); |
918 |
|
} |
919 |
|
|
920 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
921 |
0
|
public void updateTime(int columnPosition, Time x)... |
922 |
|
throws SQLException { |
923 |
0
|
throw new UnsupportedOperationException(); |
924 |
|
} |
925 |
|
|
926 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
927 |
0
|
public void updateTime(String columnName, Time x)... |
928 |
|
throws SQLException { |
929 |
0
|
throw new UnsupportedOperationException(); |
930 |
|
} |
931 |
|
|
932 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
933 |
0
|
public void updateTimestamp(int columnPosition, Timestamp x)... |
934 |
|
throws SQLException { |
935 |
0
|
throw new UnsupportedOperationException(); |
936 |
|
} |
937 |
|
|
938 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
939 |
0
|
public void updateTimestamp(String columnName, Timestamp x)... |
940 |
|
throws SQLException { |
941 |
0
|
throw new UnsupportedOperationException(); |
942 |
|
} |
943 |
|
|
944 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
945 |
0
|
public boolean wasNull() throws SQLException {... |
946 |
0
|
throw new UnsupportedOperationException(); |
947 |
|
} |
948 |
|
|
949 |
|
|
950 |
|
} |