MCPcopy
hub / github.com/jOOQ/jOOQ / function

Method function

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

function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ. NOTE : When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be su

(@Stringly.UnquotedName String name, Class<T> type, Field<?>... arguments)

Source from the content-addressed store, hash-verified

17050 * @see SQL
17051 */
17052 @NotNull
17053 @Support
17054 @PlainSQL
17055 public static <T> Field<T> function(@Stringly.UnquotedName String name, Class<T> type, Field<?>... arguments) {
17056 return function(name, type, asList(arguments));
17057 }
17058
17059 /**
17060 * <code>function()</code> can be used to access native or user-defined

Callers 15

acceptMethod · 0.95
groupingMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
acceptMethod · 0.95
accept0Method · 0.95
objDescriptionMethod · 0.95
acceptMethod · 0.45

Calls 2

getDataTypeMethod · 0.95
nullSafeMethod · 0.95

Tested by 1

acceptMethod · 0.36