Creates a typed input parameter for JDBC type Types#BOOLEAN BOOLEAN. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 883 | * @return an input parameter for the supplied value |
| 884 | */ |
| 885 | public static InParameter BOOLEAN(Object value) { return in(Types.BOOLEAN, value); } |
| 886 | /** |
| 887 | * Creates a typed input parameter for JDBC type {@link Types#CHAR CHAR}. |
| 888 | * |