gpt4 book ai didi

javascript - Phonegap 应用程序 SQLite 数据库初始设置

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:20:44 25 4
gpt4 key购买 nike

在首次执行时构建应用数据库架构的最佳做法是什么?

换句话说,我想找出的是:

SQLite 不支持以逗号分隔的查询作为单语句批处理执行。如何替换它以使代码保持 future 的证明? (我不认为自己将所有创建语句依次链接到 tx.executeSQL("") 中,这会使我的代码变成可怕的 cr*p fragment )。

最佳答案

我在 native 代码以及 Sencha/Phonegap 中所做的是使用我引用的 DatabaseHelper 类。在该类中,您可以看到数据库的版本:

public DataBaseHelper(Context context) {
super(context, DB_NAME, null, 2);
this.myContext = context;
}

public void createDataBase() throws IOException {
boolean dbExist = checkDataBase();
if (dbExist) {
// do nothing - database already exist
openDataBase();
int cVersion = myDataBase.getVersion();
if(cVersion != 2){
onUpgrade(myDataBase, myDataBase.getVersion(), 2);}
close();
} ....}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
this.getReadableDatabase();
try{
db.execSQL("ADD SQL QUERY HERE TO ADD TABLE");
}
catch(Exception e){}
}


private boolean checkDataBase() {
SQLiteDatabase checkDB = null;
try {
String myPath = DB_PATH + DB_NAME;
checkDB = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READWRITE);
} catch (SQLiteException e) {
// database does't exist yet.
}
if (checkDB != null) {
checkDB.close();
}
return checkDB != null ? true : false;
}

虽然这很乏味,但它可以让您的数据库面向 future 并在运行时调用查询。这满足了您的需求。

希望对您有所帮助:)

关于javascript - Phonegap 应用程序 SQLite 数据库初始设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11773737/

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