SqlMan

A Lightweight Java Database Helper Library

Key Features

Familiar Syntax

sql().input('SELECT * FROM table WHERE id=?', 1).query()

Compatible with Spring JdbcTemplate & Apache DBUtils

Multiple SQL Styles

Support for XML Mappers, Annotations, and Direct SQL

Auto Bean Mapping

Automatic JavaBean population from ResultSets

Zero SQL Mode

Built-in CRUD operations without writing SQL

Design Philosophy

Small

Simple philosophy, easy to understand the whole package quickly

Transparent

No magic behind the scenes, straightforward execution

Fast

Minimal object creation, efficient database operations

Quick Start

<dependency>
    <groupId>com.ajaxjs</groupId>
    <artifactId>sqlman</artifactId>
    <version>1.2</version>
</dependency>