Just pushed up Drizzle JDBC 1.1 with 2 quite big new features: SSL support – add ?useSSL=true in the connection string (and do the usual ssl-in-java magic to make it work. Check the MySQL documentation for more information, it is set up exactly the same way here) Multi queries – add ?allowMultiQueries=true to your connection string [...] [...more]
Finally got around to making a 1.0-release of Drizzle JDBC, after a while of not getting any bug reports (not at all claiming that it is bug free, but it is stable enough for several companies to use it in production). Far those new to Drizzle JDBC, it is a BSD-licensed JDBC driver for Drizzle [...] [...more]
Just pushed up Drizzle-JDBC 0.8 to the central maven repository, list of changes is below. To use it, update your poms to include this: <dependency> <groupId>org.drizzle.jdbc</groupId> <artifactId>drizzle-jdbc</artifactId> <version>0.8</version></dependency> Or simply download the jar file and add it to the classpath. Further instructions on how to us it is available on the Drizzle JDBC Wiki Drizzle [...] [...more]
I just pushed up initial support for PBMS, blob streaming for drizzle jdbc. It is not yet a complete solution for blob streaming, but you can use setBinaryStream and getBinaryStream to stream data to/from Drizzle and MySQL. To use it, grab a snapshot from hudson (the reason the tests fail is that i have not [...] [...more]
Just pushed Drizzle JDBC 0.7 to the maven repository, it contains bug fixes and features both for the MySQL and Drizzle support; Support user name and password in Properties when connecting. A lot of datatype fixes thanks to the guys at Continuent and their Connector test suite. Initial implementation of ParameterMetadata. Fix umlaut bug reported [...] [...more]