Skip to content
Zsolt Herpai edited this page Jan 22, 2015 · 15 revisions

Welcome to the fluent-jdbc wiki!

####About FluentJdbc####

Fluent-Jdbc provides a fluent API for executing SQL queries in java. It is best suited for projects that require fine control over SQL queries and operations in a convenient, declarative way.

It wraps JDBC, provides additional features while avoids JDBC inconveniences and clutter. Fluent-Jdbc is light-weight, has no 3rd party dependencies.

#####Main advantages over plain JDBC#####

  • a flexible, functional API making the most common JDBC operations trivial one-liners
  • implicit resource management, avoiding leaks of Connections, PreparedStatements, ResultSets
  • out of the box support for java.time, extension API for more custom types
  • automatic mapping of results to POJOs
  • named query parameters
<dependency>
    <groupId>org.fluentjdbc</groupId>
    <artifactId>fluentjdbc</artifactId>
    <version>0.9</version>
</dependency>

Get started guide
Javadoc

Clone this wiki locally