memtrip / SQLKing

SQLKing is an Android SQLite ORM powered by an annotation preprocessor, tables are defined by Table annotations and CRUD classes expose an expressive api for executing SQLite queries. @memtrip
Other
21 stars 9 forks source link

How to do join queries? #9

Closed Trellian closed 8 years ago

Trellian commented 8 years ago

Hi Sam,

Have you got a simple example of a query involving a join between two tables?

Thanks, Adrian

samkirton commented 8 years ago

Hi Adrian,

The next build will have support for join, it will be with you Monday.

Cheers, Sam

samkirton commented 8 years ago

For an inner join example please see:

https://github.com/memtrip/SQLKing/blob/master/sample/app/src/main/java/com/memtrip/sqlking/sample/comment/CommentActivity.java#L144