Creates a typed input parameter for JDBC type Types#BLOB BLOB. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 876 | * @return an input parameter for the supplied value |
| 877 | */ |
| 878 | public static InParameter BLOB(Object value) { return in(Types.BLOB, value); } |
| 879 | /** |
| 880 | * Creates a typed input parameter for JDBC type {@link Types#BOOLEAN BOOLEAN}. |
| 881 | * |