sql >> Database >  >> RDS >> SQLite

SQLite-tabelbeperking uniek en ON CONFLICT REPLACE gebruik

Verander hier je tafelstructuur in

private static final String CREATE_USER_TABLE = "CREATE TABLE IF NOT EXISTS " + TABLE_LOCATIONS + "("
            + UID + " TEXT PRIMARY KEY," + ADDRESS + " TEXT,"
            + LONGITUDE + " TEXT," + LATITUDE + " TEXT,
            UNIQUE(" + LOGITUDE + "," + LATITUDE + ") ON CONFLICT REPLACE)";

Gebruik dan de onderstaande methode wanneer u de invoeging doet

ContentValues insertValues = new ContentValues();
insertValues.put(LATITUDE, latitude);
insertValues.put(LOGITUDE, longitude);
db.insertWithOnConflict(TABLE_LOCATIONS, null, insertValues, SQLiteDatabase.CONFLICT_REPLACE);



  1. Android SQLite:hoe een grote tabel genereren voor testdoeleinden?

  2. FLOOR() Functie in Oracle

  3. Oracle 12c GEDENTIFICEERD DOOR WAARDEN

  4. Hoe SQL Server op Red Hat 8 te installeren