Creates a typed input parameter for JDBC type Types#CLOB CLOB. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 897 | * @return an input parameter for the supplied value |
| 898 | */ |
| 899 | public static InParameter CLOB(Object value) { return in(Types.CLOB, value); } |
| 900 | /** |
| 901 | * Creates a typed input parameter for JDBC type {@link Types#DATALINK DATALINK}. |
| 902 | * |