I'm new in programming, so I get some issues while implemating the sqlite database:
String[] spalten=new String[]{"uebung","datum","ergebnis"};
Cursor cursor1=db.rawQuery("SELECT MAX(uebung) FROM freunde", spalten);
cursor1.moveToFirst();
String r=cursor1.getString(0);
Does Anyone know what the problem is? I just want to read out the content of the box with the highest level.
??