Skip to content

Releases: jcabi/jcabi-jdbc

md pages to apt format

02 Nov 18:32
Compare
Choose a tag to compare

JdbcSession.prepare()

04 Sep 09:02
Compare
Choose a tag to compare

Findbugs annotation removed

04 May 06:29
Compare
Choose a tag to compare

A small bug fix that removes an annoying FindBugs annotation. Use this version instead of 0.12

Outcome instead of Handler

25 Apr 13:53
Compare
Choose a tag to compare

In this version we renamed JdbcSession.Handler to Outcome and made all classes @Immutable

JdbcSession$Handler.handle() accepts Statement

23 Feb 08:20
Compare
Choose a tag to compare

JdbcSession$Handler.handle() accepts Statement, as explained in #7

Connection closing bug fixed

02 Nov 08:05
Compare
Choose a tag to compare

This version fixes connection closing bug introduced in 0.10.1, see #5

#autocommit() fixed

31 Oct 08:35
Compare
Choose a tag to compare

In this version the behavior of JdbcSession#autocommit() fixed. Now it behaves as it should, telling the session whether the next query should be automatically committed or not.

JdbcSession(Connection) constructor

08 Oct 08:46
Compare
Choose a tag to compare

New constructor JdbcSession(Connection) was added in this version.

JdbcSession#execute()

15 Sep 08:02
Compare
Choose a tag to compare

New method JdbcSession#execute() added. It allows execution of SQL statements without expecting any result. Mostly useful for schema modifications and server-side commands. Besides that, method JdbcSession#update() was changed. Now it expects one parameter of type Handler.