javaxsql
javaxsql is a Java library that provides a high-level API for interacting with relational databases using SQL. Built on top of the JDBC API, it aims to reduce boilerplate, improve type safety, and streamline common database tasks without requiring a full ORM.
The library offers a fluent, SQL-centric programming model. It emphasizes concise database access patterns such as
Design goals include portability across databases via a dialect layer, and seamless integration with existing JDBC
Typical usage involves obtaining a DataSource, constructing a Database or SqlClient instance, and executing queries to
javaxsql is designed to complement Java's database tools by providing an approachable alternative to raw JDBC
See also: JDBC, javax.sql, SQL, DataSource, Java persistence technologies.