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)
| 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 |