Creates a typed input parameter for JDBC type Types#CHAR CHAR. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 890 | * @return an input parameter for the supplied value |
| 891 | */ |
| 892 | public static InParameter CHAR(Object value) { return in(Types.CHAR, value); } |
| 893 | /** |
| 894 | * Creates a typed input parameter for JDBC type {@link Types#CLOB CLOB}. |
| 895 | * |