SqlMan is a lightweight wrapper over JDBC. It is NOT an ORM but follows a SQL-first approach. It allows you to use pure SQL with IF/forEach and pass Map parameters for queries or executions. The results you receive are either 'isOk' indicators and 'Map' or Java Bean object(s). SqlMan enables fast CRUD database operations with ZERO dependencies, except for the JDK.
Web Site | Tutorials | Java Documents
Runs on Java11+. Maven:
<dependency>
<groupId>com.ajaxjs</groupId>
<artifactId>sqlman</artifactId>
<version>1.0</version>
</dependency>