sqlbuilder icon indicating copy to clipboard operation
sqlbuilder copied to clipboard

SQL Builder Library for Java

Results 17 sqlbuilder issues
Sort by recently updated
recently updated
newest added

- added unit tests for table hints I added table hints option for mssql.

thanks, it's really a great lib. will it support other db(postgre/ oracle) ?

Map Usually return In this project.However, The meaning of Java View Object is clearer and more maintainability. How do you compare these two approaches?Map or Java View Object.

any updates for Insert, UPdate, Delete with several types (bye, int, short, long, double, float, BigDecimal, Data, String ) and nullables values ?

maybe value being an object is better and in the backgroud process by cheking table meta to get type of current insertion field where for exemple pictures must be blobs

```java KeyHolder keyHolder = new GeneratedKeyHolder(); PreparedStatementCreator psc = new InsertCreator(SHOP_TABLE) .setValue("shop_name", shopEntity.getName()) .setValue("created_At", String.valueOf(shopEntity.getCreatedAt())) .setValue("last_renewal", String.valueOf(shopEntity.getLastRenewal())) .setValue("max_timer", String.valueOf(shopEntity.getMaxTimer())); jdbcTemplate.update(psc, keyHolder); ``` The code returns an exception since I need...