Hello, > Considering all this - and most importantly that I like Spring jdbc > managing my connections - hopefully using Sergei's(?) Proxy- which > version should I try out? 2.2.2 or 2.3?
2.3 will be released this weekend. You may give it a shot and build it yourself from GitHub, or wait for two days while experimenting with 2.2.2. In essence, the added FactoryProxy is just convenience for the automatic handling of obtaining a JDBC connection from a data source and using Springs magic to close the connection again. This will be documented when 2.3.0 is released. But you can use jOOQ with Spring without using the FactoryProxy. The talks about version 3.0 later this year are (among other points) about the fact that jOOQ should better separate the SQL query builder functionality from the query execution functionality. This would greatly simplify the usage of DataSources, such as those provided by Spring. The 2.x version stream is not a dead end, though. It will still be maintained once 3.0 is live. > Is the documentation in your site for 2.2 or 2.3? It is for the latest released version, i.e. 2.2 Cheers Lukas
