I found a lot of examples about SQlite. I have no experience with this language, but Android recommends using this database to save things locally. I just can't solve this problem. I have the following (adapted from an example):
import android.content.ContentValues;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class DatabaseHelper extends SQLiteOpenHelper
{
public static final String DATABASE_NAME = "highscores";
public DatabaseHelper(Context context)
{
super(context, DATABASE_NAME, null, 1);
} // I don't even need this, do I? ...
@Override
public void onCreate(SQLiteDatabase db)
{
String sql = "CREATE TABLE IF NOT EXISTS scoretable (" +
"_id INTEGER PRIMARY KEY AUTOINCREMENT, " +
"Curscore INTEGER, " +
"Curmode INTEGER, " +
"Curdiff INTEGER, " +
"Curdate STRING);";
db.execSQL(sql);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
//Not used
}
}
In my (main) activity, I have:
protected SQLiteDatabase db;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// Other code
db = (new DatabaseHelper(this)).getWritableDatabase();
}
To insert data I use:
String dateFormat = "dd/MM";
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
String date = sdf.format(cal.getTime());
ContentValues values = new ContentValues();
values.put("Curscore", score); // score is a public integer
values.put("Curmode", gamemode); // gamemode is a public integer
values.put("Curdiff", difficulty); // difficulty is a public integer
values.put("Curdate", date);
db.insert("scoretable", null, values);
QUESTION: The only thing I want now is a function that retrieves all data from the "scoretable". Then I will manipulate it (I compare scores and insert the new score if it is high enough, I will be able to take care of that myself). After that I want to overwrite the old data with the new manipulated data. (10-1) Why does my current code fail to work?
Thanks in advance!!