SQLite
 sql >> Database >  >> RDS >> SQLite

Come eseguire una query SQLite all'interno di un'applicazione Android?

Questo ti restituirà il cursore richiesto

Cursor cursor = db.query(TABLE_NAME, new String[] {"_id", "title", "title_raw"}, 
                "title_raw like " + "'%Smith%'", null, null, null, null);