SQLiteQueryBuilder
SQLiteQueryBuilder copied to clipboard
A library that provides a simple API for building SQLite query statements in Java.
Hi, I posted another issue #48 where you asked me to split my features in different issues, so this is the first one. I wonder if you could find a...
References #31.
I would like to be able to do the following: ``` .from("table1") .leftOuterJoin("table2").on(...) .leftOuterJoin("table3").on(...) .where(...) ``` As far as I understand it is not possible to chain multiple left outer...
Hi, I am executing the very complex query at the end of this issue :P. The only problem with it is that I cannot chain multiple left joins. But also...
Hi, It would also be nice if I can mark a select query as a prepared statement so that I do not have to write "=?" everytime. I understand it...
Instead of validating unit tests against a hard-coded string, use a real SQLite instance to run statements to validate them.
We should consider changing some classes scope from public to package private. This avoids exposing a lot of internal classes that aren't meant to be used outside of the API....
is there any support for insert and Update statements?
Prevent silly mistakes by forcing users to only use valid method calls.