Using ORMLite under Android, when you set foreignAutoRefresh to true, does this result in join query or does ORMLite issue two queries one after another — the “main query” and call to foreign objects dao.refresh? I mean is this a dependent subquery or to two queries are sent?
Using ORMLite under Android, when you set foreignAutoRefresh to true, does this result in
Share
To quote the ORMLite documentation from the
foreignAutoRefreshjavadocs:The bolding is mine. ORMLite does not do any JOINs at this time but issues a separate database query for any of the auto-refresh and other operations.