Hi,
Indeed, we currently do not support MySQL procedures that return cursors, because (to our knowledge), MySQL's INFORMATION_SCHEMA does not provide any such information to the code generator. We may be wrong about that, of course, in case of which we would be more than happy to add this kind of support to jOOQ...
What you can do, of course, is:
- Base your source code generation on H2 instead of MySQL (I personally wouldn't recommend that, though - the databases are too different...)
- Implement your own MySQLDatabase in jOOQ-Meta, that provides / patches the relevant procedures with cursor results
Cheers,
Lukas