Creates a typed input parameter for JDBC type Types#ARRAY ARRAY. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 848 | * @return an input parameter for the supplied value |
| 849 | */ |
| 850 | public static InParameter ARRAY(Object value) { return in(Types.ARRAY, value); } |
| 851 | /** |
| 852 | * Creates a typed input parameter for JDBC type {@link Types#BIGINT BIGINT}. |
| 853 | * |