- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个包含两个具有一对多关系的表的数据库。(一个食谱属于多种成分)
看起来我已经正确设置了所有内容,但现在当我构建数据库时,我想要预先填充一些食谱和属于该食谱的成分。但我不知道如何在数据库生成器中实现这一点。
这是我的食谱表:
@Entity(tableName = "recipe_table") //Represents the table in SQLite database
public class Recipe {
@PrimaryKey(autoGenerate = true)
private int id; //Holds the id of the recipe
private String title; //Holds the name of the recipe
@Ignore
private List<Ingredient> ingredientsList;
//Generate constructor to create objects later
public Recipe(String title, List<Ingredient> ingredientsList) {
this.title = title;
this.ingredientsList = ingredientsList;
}
//Generate getters to persist values to the database
public int getId() {
return id;
}
//Generate setter so that room can recreate later
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public List<Ingredient> getIngredientsList() {
return ingredientsList;
}
public void setIngredientsList(List<Ingredient> ingredientsList) {
this.ingredientsList = ingredientsList;
}
}
成分表:
package com.example.kookrecepten;
import androidx.room.Entity;
import androidx.room.ForeignKey;
import androidx.room.Ignore;
import androidx.room.PrimaryKey;
import java.util.List;
import static androidx.room.ForeignKey.CASCADE;
@Entity(foreignKeys = @ForeignKey(entity = Recipe.class, parentColumns = "id", childColumns = "recipeId", onDelete = CASCADE))
public class Ingredient {
@PrimaryKey
private int id;
private int recipeId;
private String title; //Name of the ingredient
@Ignore
private List<Ingredient> ingredientsList;
public Ingredient(String title, int recipeId) {
this.title = title;
this.recipeId = recipeId;
}
public void setId(int id) {
this.id = id;
}
public void setRecipeId(int recipeId) {
this.recipeId = recipeId;
}
public int getId() {
return id;
}
public int getRecipeId() {
return recipeId;
}
public String getTitle() {
return title;
}
}
这是我的 dao 文件
@Dao
public abstract class RecipeDao {
//Insert recipe
@Insert
public abstract void insertRecipe(Recipe recipe);
//Insert ingredients list
@Insert
public abstract void insertIngredientList(List<Ingredient> ingredients);
@Query("SELECT * FROM recipe_table WHERE id =:id")
public abstract Recipe getRecipe(int id);
@Query("SELECT * FROM Ingredient WHERE recipeId =:recipeId")
public abstract List<Ingredient> getIngredientList(int recipeId);
public void insertRecipeWithIngredients(Recipe recipe) {
List<Ingredient> ingredients = recipe.getIngredientsList();
for (int i = 0; i < ingredients.size(); i++) {
ingredients.get(i).setRecipeId(recipe.getId());
}
insertIngredientList(ingredients);
insertRecipe(recipe);
}
public Recipe getRecipeWithIngredients(int id) {
Recipe recipe = getRecipe(id);
List<Ingredient> ingredients = getIngredientList(id);
recipe.setIngredientsList(ingredients);
return recipe;
}
}
但我的问题是我不知道如何预填充我的数据库。
private static class PopulateDbAsyncTask extends AsyncTask<Void, Void, Void> {
private RecipeDao recipeDao;
private PopulateDbAsyncTask(RecipeDatabase db) {
recipeDao = db.recipeDao();
}
@Override
protected Void doInBackground(Void... voids) {
recipeDao.insertRecipeWithIngredients(
//insert a recipe and a list of ingredients?
);
return null;
}
}
最佳答案
首先,我建议您不要使用 AsyncTask,因为它已已弃用。点击official documentation了解更多详情。
其次您可以使用以下 3 个选项来预填充数据库:
1) createFromAssets:在此选项中,您可以在 asset 文件夹下创建一个名为“databases”的目录所以你的可能如下:
.createFromAssets("/databases/YOUR DATABASE FILENAME")
2) createFromFile:此选项可能适用于您分配其路径的文件。
.createFromFile(File("YOUR FILE PATH"))
如果您遇到这两种解决方案,您可以尝试手动解决方案,我们可以称之为手动解决方案是的!。通过访问 Assets 文件夹中的数据库文件。
private fun copyDBFromStorage(databaseName: String) {
if (checkIfDBExists(this, databaseName)) return
val databaseFile = File(this.getDatabasePath(databaseName).toString())
val sourceLocation = assets.open("Your database file path")
try {
val inputStream = sourceLocation
val os = FileOutputStream(databaseFile)
val buffer = ByteArray(1024 * 32)
var length = inputStream.read(buffer)
while (length > 0) {
os.write(buffer, 0, length)
length = inputStream.read(buffer)
}
os.flush()
os.close()
inputStream.close()
} catch (ex: IOException) {
ex.printStackTrace();
throw RuntimeException("Error copying storage database");
}
}
private fun checkIfDBExists(
context: Context,
databaseName: String
): Boolean {
val dbfile = File(context.getDatabasePath(databaseName).toString())
if (dbfile.exists()) return true
if (!dbfile.parentFile.exists()) {
dbfile.parentFile.mkdirs()
}
return false
}
希望这会有所帮助
祝你编码愉快🤓
关于java - 尝试预填充房间数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61525459/
我在使用 Room 或 idk 时遇到问题,实际上问题出在哪里,我需要帮助找出问题出在哪里,我正在使用 Hilt DI,创建数据库实例的那一刻它崩溃了这是我的代码 错误 E/AndroidRuntim
我有一个关于数据结构和类设计的问题(抱歉太长了)。为了简单起见,假设这是一个游戏,我想在房间之间导航(想象一系列 2D 非滚动屏幕,例如早期的银河战士/恶魔城)。每个房间可以有许多导出(例如上、下、左
我使用当前日期(1-25)作为父ID并使用房间(08-00_11-00_karpet1-)作为 child ID。该数据库中包含在该日期(父 ID)订购该房间(子 id)的用户信息。 问题1 使用此布
在我的 Android 项目中,我使用 Room 库来处理 SQLite 数据库。我使用我的数据库来保存国家电话代码。我的数据库预装了两个国家(观看 populateDatabaseWithCount
我正在尝试将 Room 持久性库添加到 Android 应用程序项目中。在 build.gradle 文件中,我添加了以下依赖项: implementation 'android.arch.persi
人们可以提前从 25 场讲座中选择最多 5 场。所有这些讲座都在五个房间的五个时间段内在一天内进行。听众可以参加的每个(首选)讲座都让她更快乐,他选择但不能参加的每个讲座(因为另一个首选讲座在同一时间
我在 Android 上使用 OrmLite 而不是 SQLite 和 SQLCipher 来加密数据库。有没有办法加密 Room 数据库? 最佳答案 默认情况下,Room 将数据存储在应用程序的内部
使用 Room ORM,我使用 @Entity 注释声明了一个实体 EQPreset。该实体包含一个数组 int[]。它给出以下错误: 错误:无法确定如何将此字段 (int[] arr) 保存到数据库
我正在尝试构建一个管理 child 托儿所的应用程序,特别是管理哪个 child 在哪个时间点在托儿所的哪个房间里。 Nursery 链式店有多个分支机构。每个分店有几个房间,每个房间对应一个年龄段,
我在生产环境中遇到了“android.database.sqlite.SQLiteDatabaseLockedException”异常。错误分析时出现异常。我的项目数据库有空间。项目中没有使用多进程。
我想实现 Android Room 持久性。 这是我的 DAO 界面。 @Dao interface FoodDao { /** * Returns all data in tabl
我正在尝试使用 Room 数据库和 LiveData。我有 ViewModels,它保存从 dao 获得的 LiveData。如果我更新Transaction ,然后LiveData>观察正常,但是
在 Firebase ,创建“房间”(例如用于聊天)很容易,正如其各种示例中所记录的那样。 对于聊天的数据结构,我会使用这样的东西: rooms room1 member_co
我试图从 Activity 中将一行插入 SQLITE 数据库,然后返回要存储在 Activity 中的变量中的 rowId。请参阅下面我使用的方法和逻辑。 private void insert
我正在使用 XMPPFramework 开发聊天应用程序 加入现有房间后如何接收消息历史记录? 现在我像这样加入房间: XMPPJID *roomJid = [XMPPJID jidWithStrin
我在我的应用程序中使用 Room 并将数据插入到我的数据库中时 ConcurrentModificationException有时会被抛出。为什么会这样? 我使用分页 api,在每次 api 调用后,
我想为 pb 添加值,由于将 pb_value 包含到实体中,应用程序崩溃了。我是学习室的新手,我不确定将额外项目合并到数据库中的正确方法。 E/AndroidRuntime: FATAL EXCEP
我想在当前 pb 中添加值、日期和详细信息。我在 pbInfo 的数据库中收到错误“冲突声明”。我应该如何修复此错误? @Entity(tableName = "pb_table") data cla
我正在尝试制作一个聊天应用程序,用户可以在其中聊天。我想将两个用户 uid 字符串插入函数并返回一个连接的字符串。但我希望以某种方式组织 uid,以便返回的值始终相同。 func (id1, id2)
我不断收到以下错误: Cannot figure out how to save this field into database. You can consider adding a type co
我是一名优秀的程序员,十分优秀!