Create a bind value, that is always inlined. The resulting bind value is always inlined, regardless of the Settings#getStatementType() property of the rendering factory. Unlike with #field(String), you can expect value to be properly escaped for SQL syntax correctnes
(T value)
| 36282 | * @see #val(Object) |
| 36283 | */ |
| 36284 | @NotNull |
| 36285 | @Support |
| 36286 | public static <T> Param<T> inline(T value) { |
| 36287 | AbstractParamX<T> val = (AbstractParamX<T>) val(value); |
| 36288 | val.setInline0(true); |
| 36289 | return val; |
| 36290 | } |
| 36291 | |
| 36292 | /** |
| 36293 | * Create a bind value that is always inlined. |