alexfu / SQLiteQueryBuilder

A library that provides a simple API for building SQLite query statements in Java.
MIT License
70 stars 21 forks source link

Can't use and method twice after where #38

Closed salmanbabri closed 8 years ago

salmanbabri commented 8 years ago

For example I can do:- ... .where(clause).and(clause).build(); But I can't do :- where(clause).and(clause).and(clause).build();