sqlbuilder
sqlbuilder copied to clipboard
SQL Builder Library for Java
I wanted to use your library to create SQL statements for the Azure CosmosDB NoSQL, since it supports SQL API https://docs.microsoft.com/en-us/azure/cosmos-db/sql/tutorial-query-sql-api But it's not JDBC, so the dependnecy on Spring...
Bumps [h2](https://github.com/h2database/h2database) from 1.3.171 to 2.1.210. Release notes Sourced from h2's releases. Version 2.1.210 Two security vulnerabilities in H2 Console (CVE-2022-23221 and possible DNS rebinding attack) are fixed. Persistent databases...
Bumps [junit](https://github.com/junit-team/junit4) from 3.8.1 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
Needed support for auto generated keys. Hope this helps. Maybe a more generic approach for the various PreparedStatement constructors is needed?
[Example of eloquent](https://laravel.com/docs/5.8/queries#ordering-grouping-limit-and-offset) Eloquent used the words **skip** and **take**. > To limit the number of results returned from the query, or to skip a given number of results in...
``` new InsertCreator(table).setValue("\"value\"", "abCD"); ``` fails.
Right now I have to type: ``` SelectCreator select = new SelectCreator() .from("\"simple\".\"SimpleTable\"") ...; ``` It'd be better having something like: ``` SelectCreator select = new SelectCreator() .from("simple", "SimpleTable") ...;...
Hi. Will it be possible to add a limit to the query for the different databases.
Your library is small and effective, but it only allows logical **AND** in the **WHERE clause**. Imagine you need to build a more complex query with several ANDs and ORs...
Hi, can you help me for creating sql query in where condition SELECT * FROM classicmodels.offices t1 INNER JOIN classicmodels.employees t0 ON (t1.officeCode = t0.officeCode) INNER JOIN classicmodels.customers t2 ON...