Creates a typed input parameter for JDBC type Types#BINARY BINARY. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 862 | * @return an input parameter for the supplied value |
| 863 | */ |
| 864 | public static InParameter BINARY(Object value) { return in(Types.BINARY, value); } |
| 865 | /** |
| 866 | * Creates a typed input parameter for JDBC type {@link Types#BIT BIT}. |
| 867 | * |