gpt4 book ai didi

android - : android. database.sqlite.SQLiteException: no such table: (code 1) Android引起

转载 作者:IT老高 更新时间:2023-10-28 23:08:25 25 4
gpt4 key购买 nike

我们的应用程序中有一个 sqlite 数据库。它适用于所有用户,但很少有人遇到 Caused by: android.database.sqlite.SQLiteException: no such table: generalSettings (code 1): ,同时编译:select * from generalSettings 错误.

下面是我创建数据库和错误日志的 sqlite 助手类。在 assert/Master.db 我们有表 generalSettings。但是将其复制到设备后,该表丢失了。这只发生在少数用户身上。我搜索了解决方案,但找不到确切的解决方案。请团队帮我解决这个问题。

代码:

import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.StringWriter;

import android.content.Context;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.net.Uri;
import android.util.Log;

public class InstallDB extends SQLiteOpenHelper {
Context ctx;

String DBNAME;
String DBPATH;
Modules modObj = new Modules();

public InstallDB(Context context, String name) {
super(context, name, null, 1);
this.ctx = context;
this.DBNAME = name;

this.DBPATH = this.ctx.getDatabasePath(DBNAME).getAbsolutePath();
Log.e("Path 1", DBPATH);

}

public void createDataBase() {

boolean dbExist = checkDataBase();

SQLiteDatabase db_Read = null;

if (!dbExist) {
synchronized (this) {

db_Read = this.getReadableDatabase();
Log.e("Path 2", this.getReadableDatabase().getPath());
db_Read.close();

copyDataBase();
Log.v("copyDataBase---", "Successfully");
}

// try {

// } catch (IOException e) {
// throw new Error("Error copying database");
// }
}
}

private boolean checkDataBase() {

SQLiteDatabase checkDB = null;

try {
String myPath = DBPATH;
checkDB = SQLiteDatabase.openDatabase(myPath, null,
SQLiteDatabase.OPEN_READWRITE);
} catch (Exception e) {
Log.i("SQLite Error", "database does't exist yet.");
}

if (checkDB != null) {
checkDB.close();
}

return checkDB != null ? true : false;
}

private void copyDataBase() {

try {
InputStream myInput = ctx.getAssets().open(DBNAME);
String outFileName = DBPATH;

OutputStream myOutput = new FileOutputStream(outFileName);

byte[] buffer = new byte[1024 * 3];

int length = 0;

while ((length = myInput.read(buffer)) > 0) {
myOutput.write(buffer, 0, length);
}

myOutput.flush();
myOutput.close();
myInput.close();
} catch (Exception e) {
Modules.stacTaceElement = e.getStackTrace();

StringWriter stackTrace1 = new StringWriter();
e.printStackTrace(new PrintWriter(stackTrace1));
System.err.println(stackTrace1);

Intent send = new Intent(Intent.ACTION_SENDTO);
String uriText;

uriText = "mailto:test@test.com"
+ "&subject=Error Report"
+ "&body="
+ stackTrace1.toString();

uriText = uriText.replace(" ", "%20");
Uri uri = Uri.parse(uriText);

send.setData(uri);
ctx.startActivity(Intent.createChooser(send, "Send mail..."));
// TODO: handle exception
}

}

@Override
public void onCreate(SQLiteDatabase db) {

}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

}
}

错误日志:

java.lang.RuntimeException: Unable to start activity ComponentInfo{palmagent.FidelityAgent.Two/palmagent.FidelityAgent.Two.PassNew}: android.database.sqlite.SQLiteException: no such table: generalSettings (code 1): , while compiling: select * from generalSettings
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2209)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2269)
at android.app.ActivityThread.access$800(ActivityThread.java:139)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1210)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5102)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.database.sqlite.SQLiteException: no such table: generalSettings (code 1): , while compiling: select * from generalSettings
at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:889)
at android.database.sqlite.SQLiteConnection.prepare(SQLiteConnection.java:500)
at android.database.sqlite.SQLiteSession.prepare(SQLiteSession.java:588)
at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:58)
at android.database.sqlite.SQLiteQuery.<init>(SQLiteQuery.java:37)
at android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:44)
at android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1314)
at android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1253)
at palmagent.FidelityAgent.Two.masterDatabase.selectquery(masterDatabase.java:59)
at palmagent.FidelityAgent.Two.Modules.checkDatabase(Modules.java:28825)
at palmagent.FidelityAgent.Two.PassNew$LoaduserDetails.onPreExecute(PassNew.java:140)
at android.os.AsyncTask.executeOnExecutor(AsyncTask.java:587)
at android.os.AsyncTask.execute(AsyncTask.java:535)
at palmagent.FidelityAgent.Two.PassNew.onCreate(PassNew.java:120)
at android.app.Activity.performCreate(Activity.java:5248)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1110)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2173)
... 11 more

最佳答案

问题是因为某些设备正在升级你的应用程序,所以 checkDataBase() 返回 true,所以你没有调用 copyDataBase()。因此,您使用的是以前没有 generalSettings 表的数据库。要解决此问题,请尝试:

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
if(newVersion>oldVersion)
copyDatabase();
}

并更新你的构造函数:

public InstallDB(Context context, String name) {
super(context, name, null, DB_VERSION);
// DB_VERSION is an int,update it every new build

this.ctx = context;
this.DBNAME = name;
this.DBPATH = this.ctx.getDatabasePath(DBNAME).getAbsolutePath();
Log.e("Path 1", DBPATH);

}

关于android - : android. database.sqlite.SQLiteException: no such table: (code 1) Android引起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24634116/

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