gpt4 book ai didi

android - 无法使用@PrimaryKey(autoGenerate = true) 进行更新

转载 作者:行者123 更新时间:2023-11-29 16:33:13 29 4
gpt4 key购买 nike

我在使用 Room 时发现了将主键设置为自动生成的问题,

@PrimaryKey(autoGenerate = true)

如果我执行插入操作,然后执行更新操作,这些操作生成的键不同,因此我的数据不会更新。

@Entity(tableName = "test_table")
public class TestEntity {

@PrimaryKey(autoGenerate = true)
private int uid;

@ColumnInfo(name = "expiration_date_access_token")
private String expirationDateAccessToken;


/**
* Getter for retrieving primary key
*
* @return Primary key
*/
public int getUid() {
return uid;
}

/**
* Setter for setting primary key
*
* @param uid Primary key
*/
public void setUid(int uid) {
this.uid = uid;
}

/**
* Getter for retrieving expiration date of access token
*
* @return Expiration date of access token
*/
public String getExpirationDateAccessToken() {
return expirationDateAccessToken;
}

/**
* Setter for setting expiration date of access token
*
* @param expirationDateAccessToken Expiration date of access token
*/
public void setExpirationDateAccessToken(String expirationDateAccessToken) {
this.expirationDateAccessToken = expirationDateAccessToken;
}
}

这是一个 DAO 示例

@Dao
public interface TestDao {

@Query("SELECT * FROM test_table")
List<TestEntity> getAll();

@Query("DELETE FROM test_table")
void deleteAll();

@Insert
void insert(TestEntity testEntity);

@Delete
void delete(TestEntity testEntity);

@Update
void update(TestEntity testEntity);
}

这是我的 AppDatabase

@Database(entities = {TestEntity.class}, version = 1, exportSchema = false)
public abstract class AppDatabase extends RoomDatabase {

private static final String DATABASE_NAME = "room.test.db";
private static AppDatabase APP_DATABASE_INSTANCE;

public abstract TestDao testDao();

public static AppDatabase getAppdatabase(@NonNull Context context) {
if (FrameworkUtils.checkIfNull(APP_DATABASE_INSTANCE)) {
APP_DATABASE_INSTANCE = Room.databaseBuilder(context.getApplicationContext(),
AppDatabase.class, DATABASE_NAME).build();
}
return APP_DATABASE_INSTANCE;
}

/**
* Method is used to destroy database instance
*/
public static void destroy() {
APP_DATABASE_INSTANCE = null;
}
}

我已将我的 LiveData 连接到我的存储库,但是,出于简单的原因,下面也执行相同的操作。

Thread t = new Thread(new Runnable() {
@Override
public void run() {
// update database tables
TestEntity testEntity = new TestEntity();
// if I uncomment setting uid, which is the hardcoded primary key
// value, the update will happen. If I do not include this, and
// just try to update my data, a new primary key is generated and
// the old data does not get updated.

// testEntity.setUid(1);
testEntity.setExpirationDateAccessToken("12345");
AppDatabase.getAppdatabase(context).testDao().update(testEntity);

}
});

我的问题是,使用@PrimaryKey(autoGenerate = true) 的模式是什么??通过对主键进行以​​下硬编码,我可以让一切都完美地工作,但我认为这不是必需的。

编辑

    @PrimaryKey(autoGenerate = true)
private int uid = 1; <---- works with any hardcoded int value

最佳答案

您创建一个 TestEntity,然后告诉 Room 将其保存在数据库中。那时,Room 会为其分配一个自动生成的主键。如果你想更新那个特定的 TestEntity,你必须传递一个 TestEntity 类的实例,它具有与数据库使用的完全相同的 id(id 是自动生成的实体是第一次保存在数据库中,而不是在您实例化它时)。

因此,您必须知道要更新的实体的 ID。第一次保存时如何判断分配给它的是哪个id?您可以让您的 @Insert 方法返回一个 Long,这将是 id。

@Insert
Long insert(TestEntity testEntity);

因此,通过这个小改动,您现在可以知道数据库分配给最近保存的实体的 ID。然后,你可以在 java 中将那个 Long 设置为 Entity 实例,更改一些其他参数,并调用更新,它会起作用,因为这次它们将具有相同的 id

关于android - 无法使用@PrimaryKey(autoGenerate = true) 进行更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53562368/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com