I have a postgres function 'current' that takes 2 values.
The code generator creates the following 2 methods....
/**
* Get <code>khoj.current</code> as a field.
*/
public static Field<Boolean> current(String vNameSpace, ValidRangeRecord
[] vValidRanges) {
Current f = new Current();
f.setVNameSpace(vNameSpace);
f.setVValidRanges(vValidRanges);
return f.asField();
}
/**
* Get <code>khoj.current</code> as a field.
*/
public static Field<Boolean> current(Field<String> vNameSpace, Field<
ValidRangeRecord[]> vValidRanges) {
Current f = new Current();
f.setVNameSpace(vNameSpace);
f.setVValidRanges(vValidRanges);
return f.asField();
}
But I need one that is a mix, such as ...
public static Field<Boolean> current(String vNameSpace, Field<
ValidRangeRecord[]> vValidRanges) {
Current f = new Current();
f.setVNameSpace(vNameSpace);
f.setVValidRanges(vValidRanges);
return f.asField();
}
Is there any way to use the generated code as is? Or do I have to write a
custom code generator?
--
You received this message because you are subscribed to the Google Groups "jOOQ
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.