alexfu / SQLiteQueryBuilder

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

Not possible to chain multiple join statements other than regular join #41

Open mattijsf opened 8 years ago

mattijsf commented 8 years ago

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 join statements after each other (or any other non-regular join). Any plans to add it?

alexfu commented 8 years ago

@mattijsf yes. because of the nature of this lib, features will be added on an as-needed basis so if you come across any missing features that you'd like to see, continue to open issues for them.

monxalo commented 7 years ago

See #53