Creates a typed input parameter for JDBC type Types#BIT BIT. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 869 | * @return an input parameter for the supplied value |
| 870 | */ |
| 871 | public static InParameter BIT(Object value) { return in(Types.BIT, value); } |
| 872 | /** |
| 873 | * Creates a typed input parameter for JDBC type {@link Types#BLOB BLOB}. |
| 874 | * |