Showing posts with label join. Show all posts
Showing posts with label join. Show all posts

Friday, June 8, 2012

Joins are for lazy people?


I recently had a discussion with another developer who claimed to me that JOINs (SQL) are useless. This is technically true but he added that using joins is less efficient than making several requests and link tables in the code (C# or Java).

Monday, April 23, 2012

Tuesday, April 3, 2012

Best way to join tables using sqlite in android


I am trying to find out the best way to do a simple table join on my two tables using a sqlite database in an android application. Is the simplest way to use CursorJoiner or is there any easier way?