Creates a typed input parameter for JDBC type Types#DECIMAL DECIMAL. @param value the parameter value @return an input parameter for the supplied value
(Object value)
| 918 | * @return an input parameter for the supplied value |
| 919 | */ |
| 920 | public static InParameter DECIMAL(Object value) { return in(Types.DECIMAL, value); } |
| 921 | /** |
| 922 | * Creates a typed input parameter for JDBC type {@link Types#DISTINCT DISTINCT}. |
| 923 | * |