I must get the rows of a database according the passed parameters
for example, select all people sorted by name that are 38years old, and are artists female, the passed parameters are
String age=38;
String gender=female;
String job=artist;
I have tried to write this but surely there is a syntax error in my rawQuery
public Cursor getData(String age, String gender, String job) {
try {
Cursor c = mDb.rawQuery("SELECT * FROM mytable order by Name asc WHERE Age='"+age+"'" WHERE Gender='"+gender+"'" WHERE Job='"+job+"'", null);
if (c != null) {
c.moveToNext();
}
return c;
} catch (SQLException mSQLException) {
Log.e(TAG, "getData>>" + mSQLException.toString());
throw mSQLException;
}
}
Someone could help meto fix it?