SQLiteBuilder icon indicating copy to clipboard operation
SQLiteBuilder copied to clipboard

A SQLite statement builder for Java

Results 2 SQLiteBuilder issues
Sort by recently updated
recently updated
newest added

Hi, i have a short question: In StatementConverterImpl.java line 64 it says: return DOUBLE_SPACE.matcher(rawSqlBuilder.toString()).replaceAll(" "); This was causing trouble for us since it also modifies values that are saved into...

I like your library, however I would like to see "where" builder. How about having such syntax? ``` result = select(all) .from(tableName) .where( and( eq(NAME, "Joe"), eq(AGE, 99))) .limit(5) .executeOn(statementExecutor);...

enhancement