I can not pull data with a query for a boolean value. I do the request as follows:
List<DB> listPhrase = DB.find(Database.class, "history = ?", "true"); I tried it like this:
List<DB> listPhrase = DB.find(DB.class, "history = ?", String.valueOf(true)); The data in the database are entered as follows:
pDB.add(new DB(1, "rrrr", tab_list_I[0], "qqqq", "wwww", "eeee", false, false, false));