alexfu / SQLiteQueryBuilder

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

Support for other Join operators #14

Closed monxalo closed 9 years ago

monxalo commented 9 years ago

Basically:

For the API we can use the same approach like JOOQ uses:

leftOuterJoin("secondtable")
naturalJoin("table")
naturalLeftOuterJoin("table")
crossJoin("secondtable")

I can create a PR for this if you want, i'll be happy to contribute.

monxalo commented 9 years ago

See #15.