XML is another thing, which can also be used to save the drift points.
Few SQLite examples:
Create table:
executeSQLQuery ( "CREATE TABLE IF NOT EXISTS drift_points ( accountName TEXT, points INT )" )
Insert row to table:
executeSQLQuery ( "INSERT INTO drift_points ( accountName, points ) VALUES ( ?, ? )", "Castillo", 500 )
Update row:
executeSQLQuery ( "UPDATE drift_points SET points = ? WHERE accountName = ?", 600, "Castillo" )