Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 1.59 KB

README.md

File metadata and controls

20 lines (16 loc) · 1.59 KB

JSQLB (Java SQL Builder) is a little Java library for dynamically generating SQL

Build Status Apache License Version 2.0 Maven Central Codacy Badge Codacy Badge

SQL:

INSERT INTO table1 ( column1, column3, column4, column5 ) VALUES ( ?, ?, ?, ? ) RETURNING * 

JSQLB:

new PostgreSQL().insert(table1, table1.getColumnsExcept(table1.getColumn("column2"))).returning().getSQL()

Another methods you can find in test , and/or in this project.