Releases: jcabi/jcabi-jdbc
md pages to apt format
JdbcSession.prepare()
Findbugs annotation removed
A small bug fix that removes an annoying FindBugs annotation. Use this version instead of 0.12
Outcome instead of Handler
In this version we renamed JdbcSession.Handler
to Outcome
and made all classes @Immutable
JdbcSession$Handler.handle() accepts Statement
JdbcSession$Handler.handle()
accepts Statement
, as explained in #7
Connection closing bug fixed
This version fixes connection closing bug introduced in 0.10.1, see #5
#autocommit() fixed
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
New constructor JdbcSession(Connection)
was added in this version.
JdbcSession#execute()
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
.