I suspect you're using PostgreSQL with PostGIS? jOOQ already supports everything you need when using PostGIS:
- The code generator can generate all sorts of UDTs and stored functions from the PostGIS extension - Since jOOQ 3.5.0, you can implement your own org.jooq.Binding in order to support specific PGobject types. See also: http://www.jooq.org/doc/latest/manual/code-generation/custom-data-type-bindings/ If you're planning on using Oracle's GIS features, the same holds true with the PL/SQL implementation of GIS in Oracle. We have a couple of examples on GitHub: https://github.com/jOOQ/jOOQ/tree/master/jOOQ-examples/jOOQ-oracle-example I'm more than happy to help with concrete issues that you may have. Cheers, Lukas 2015-01-03 7:22 GMT+01:00 <[email protected]>: > What is the best way for now to handle GIS features with jooq? > Are there any plans to include some features in one of the upcoming 3.x > releases? > > I am working on a location based service and that feature would definitely > simplify things a lot. Especially for queries such as getting the rows with > nearest location to a certain coordinate. > > -- > 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. > -- 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.
