MCPcopy
hub / github.com/jOOQ/jOOQ / inline

Method inline

jOOQ/src/main/java/org/jooq/impl/DSL.java:36284–36290  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 15

sqlInlineMethod · 0.95
fieldMethod · 0.95
castNullMethod · 0.95
escapeMethod · 0.95
truncMethod · 0.95
listAggMethod · 0.95
listAggDistinctMethod · 0.95
binaryListAggMethod · 0.95
binaryListAggDistinctMethod · 0.95
ntileMethod · 0.95
leadMethod · 0.95
lagMethod · 0.95

Calls 3

valMethod · 0.95
inline0Method · 0.95
setInline0Method · 0.45

Tested by 1

acceptMethod · 0.64