Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 583 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 583 Bytes

hero

SqlBuilder is Java librairie who enables you to simply create with a elegant way a Sql query


Links:


Easy to use

SqlBuilder.select("nom", "prenom")
       .from("users")
       .where("nom = Jean")
       .where("prenom = Pierre")
       .orderBy("nom", OrderByCommand.Order.ASC)
       .limit(5)
       .build()