()
| 97 | } |
| 98 | |
| 99 | public Object[] getBindArgs() { |
| 100 | Object[] result = null; |
| 101 | if (bindArgs != null) { |
| 102 | result = new Object[bindArgs.size()]; |
| 103 | for (int i = 0; i < bindArgs.size(); i++) { |
| 104 | result[i] = ColumnUtils.convert2DbValueIfNeeded(bindArgs.get(i).value); |
| 105 | } |
| 106 | } |
| 107 | return result; |
| 108 | } |
| 109 | |
| 110 | public String[] getBindArgsAsStrArray() { |
| 111 | String[] result = null; |
nothing calls this directly
no test coverage detected