Creates a typed input parameter for JDBC type Types#BIGINT BIGINT. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 855 | * @return an input parameter for the supplied value |
| 856 | */ |
| 857 | public static InParameter BIGINT(Object value) { return in(Types.BIGINT, value); } |
| 858 | /** |
| 859 | * Creates a typed input parameter for JDBC type {@link Types#BINARY BINARY}. |
| 860 | * |