> - A CMIS repository is not a database, and querying > from a client point of view does not require JDBC. > All we need is the SQL. > - Will JOOQ only support back-ends that can be > interfaced by a JDBC driver?
See http://www.jooq.org/doc/3.0/manual/getting-started/use-cases/jooq-as-a-standalone-sql-builder/ Money quote #1: "The SQL string that you can generate as such can then be executed using JDBC directly, using Spring's JdbcTemplate, using Apache DbUtils and many other tools." > - Type-safety. CMIS has object types, and these have > property definitions. These could be analogous to > database tables and types could theoretically be > generated against them. Money quote #2: "Plain SQL: This section contains information useful in particular to those that want to supply table expressions, column expressions, etc. as plain SQL to jOOQ, rather than through generated artefacts." Disclaimer: That's just from reading the manual. I'm more a bystander than an actual Jooq user. But I think the link says that, yes, you can do these things, assuming there are no pitfalls hidden in the details of your use case (or in the details of Jooq). -- 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/groups/opt_out.
