carlosmiranda / jcabi-jdbc

Fluent Wrapper of JDBC

Home Page:http://jdbc.jcabi.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Made By Teamed.io

Build Status Maven Central

More details are here: jdbc.jcabi.com

JdbcSession is a convenient fluent wrapper around JDBC:

import com.jcabi.jdbc.JdbcSession;
public class Main {
  public static void main(String[] args) {
    String name = new JdbcSession(/* JDBC data source */)
      .sql("SELECT name FROM foo WHERE id = ?")
      .set(123)
      .select(new SingleOutcome<String>(String.class));
  }
}

Questions?

If you have any questions about the framework, or something doesn't work as expected, please submit an issue here. If you want to discuss, please use our Google Group.

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice

About

Fluent Wrapper of JDBC

http://jdbc.jcabi.com/

License:Other


Languages

Language:Java 100.0%