My goal is to get all rows from native db with a specific email address on Android Gingerbread and above.
This query gets only the rows where the case also matches.
Cursor cursor = this.db.query("UserTbl", new String[] {"UserId", "Username", "Password" }, "Username = ? COLLATE NOCASE AND Password = ? COLLATE NOCASE", new String[] { userNameString, passwordString }, null, null, null);