So I am using ormlite to handle my sqlite database in android. Unfortunately, I am getting unexpected results using dao.queryBuilder().where().eq().queryFirst(). Here is my function :
public static Person getByEmail(Dao<Person, ?> dao, String email) {
try {
Log.e("queriedEmail", email);
return dao.queryBuilder().where()
.eq(Person.EMAIL_FIELD, email)
.queryForFirst();
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
I have actually checked the email being passed and the person object I get. Both have completely different emails.
The above function is called by
public static Person getByEmail(MyApp app, String email) {
try {
return getByEmail(app.getDatabaseHelper().getDao(
Person.class), email);
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}
It'd be awesome if someone could point out where I'm going wrong. Thanks!
Well, I got a solution. queryBuilder is actually giving wrong results so I used ormlite queryRaw instead of queryBuilder.