Fix duplicated watchlist elements

This commit is contained in:
Tanguy Herbron 2018-06-05 08:38:47 +02:00
parent 7505d8a1be
commit 3b894c634b
2 changed files with 20 additions and 6 deletions

Binary file not shown.

View File

@ -92,17 +92,31 @@ public class DatabaseManager extends SQLiteOpenHelper{
onCreate(db);
}
private boolean isCurrencyInWatchlist(String symbol)
{
String searchQuerry = "SELECT * FROM " + TABLE_WATCHLIST + " WHERE " + KEY_WATCHLIST_SYMBOL + "='" + symbol + "'";
SQLiteDatabase db = this.getWritableDatabase();
Cursor result = db.rawQuery(searchQuerry, null);
return result.moveToFirst();
}
public void addCurrencyToWatchlist(Currency currency)
{
SQLiteDatabase db = this.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(KEY_WATCHLIST_SYMBOL, currency.getSymbol());
values.put(KEY_WATCHLIST_NAME, currency.getName());
values.put(KEY_WATCHLIST_POSITION, getWatchlistRowCount(db));
if(!isCurrencyInWatchlist(currency.getSymbol()))
{
ContentValues values = new ContentValues();
db.insert(TABLE_WATCHLIST, null, values);
db.close();
values.put(KEY_WATCHLIST_SYMBOL, currency.getSymbol());
values.put(KEY_WATCHLIST_NAME, currency.getName());
values.put(KEY_WATCHLIST_POSITION, getWatchlistRowCount(db));
db.insert(TABLE_WATCHLIST, null, values);
db.close();
}
}
public void updateWatchlistPosition(String symbol, int position)