Attempting to reduce the problem I dropped down to a single database. I've tried the enum itself and every permutation of name/literal and ordinal.
objectBatch.bind(1, ObjectType.*account*.getLiteral()); objectBatch.bind(1, ObjectType.*account*.getName()); objectBatch.bind(1, ObjectType.*account*.ordinal()); All end with the same exception generated not upon the bind on execute. The bind method appears to be asking for a generic object. The way I would normally do this with MySQL is to bind a string name of the enumeration to the statement parm. -- 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.
