I am new to DBFLow. I want to make aquery that returns one row depending on a where clause..I seem not to find a where clause with an and.
String phone = uname_pass[0];
String pass = uname_pass[1];
List<User> userList = SQLite.select().from(User.class).where("phone ?",phone ).execute();
I want to retrieve where phone = uname_pass[0];
and password = uname_pass[1]
;
What could be the right query ?