【发布时间】:2011-09-23 07:42:41
【问题描述】:
我的sqlite数据库有问题。首先我在外部创建数据库,然后将其放入assets文件夹中。以下代码复制数据库。
public class DbH extends SQLiteOpenHelper{
private Context mycontext;
private String DB_PATH = "/data/data/com.android.quotes/databases/";
private static String ROW_ID="_id";
private static String DB_NAME = "mdb1.db";
public SQLiteDatabase myDataBase;
/*private String DB_PATH = "/data/data/"
+ mycontext.getApplicationContext().getPackageName()
+ "/databases/";
*/
public DbH(Context context) throws IOException {
super(context,DB_NAME,null,1);
this.mycontext=context;
boolean dbexist = checkdatabase();
if(dbexist){
//System.out.println("Database exists");
opendatabase();
} else {
System.out.println("Database doesn't exist");
createdatabase();
}
}
public void createdatabase() throws IOException{
boolean dbexist = checkdatabase();
if(dbexist){
System.out.println(" Database exists.");
} else {
this.getReadableDatabase();
try{
copydatabase();
} catch(IOException e){
throw new Error("Error copying database");
}
}
}
private boolean checkdatabase() {
//SQLiteDatabase checkdb = null;
boolean checkdb = false;
try{
String myPath = DB_PATH + DB_NAME;
File dbfile = new File(myPath);
SQLiteDatabase.openDatabase
(myPath,null,SQLiteDatabase.OPEN_READWRITE);
checkdb = dbfile.exists();
} catch(SQLiteException e){
System.out.println("Database doesn't exist");
}
return checkdb;
}
private void copydatabase() throws IOException {
//Open your local db as the input stream
InputStream myinput = mycontext.getAssets().open(DB_NAME);
// Path to the just created empty db
String outfilename = DB_PATH + DB_NAME;
//Open the empty db as the output stream
OutputStream myoutput = new FileOutputStream(outfilename);
// transfer byte to inputfile to outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = myinput.read(buffer))>0){
myoutput.write(buffer,0,length);
}
//Close the streams
myoutput.flush();
myoutput.close();
myinput.close();
}
public void opendatabase() throws SQLException{
//Open the database
String mypath = DB_PATH + DB_NAME;
myDataBase = SQLiteDatabase.openDatabase(
mypath, null, SQLiteDatabase.OPEN_READWRITE
);
}
public synchronized void close(){
if(myDataBase != null){
myDataBase.close();
}
super.close();
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// Empty
}
@Override
public void onCreate(SQLiteDatabase arg0) {
// TODO Auto-generated method stub
}
}
在主要活动中,我首先调用 createdatabase,然后调用 opendatabase。 现在我在sqlite数据库中只创建了两个表,一个是android_metadata,第二个是mTable。当我运行程序时出现以下错误。
- 虽然创建了数据库,我可以在 Eclipse 中使用文件资源管理器查看它,但只有 android_metadata 表存在,mTable 不存在。
- 所以它说从 mTable 中选择 * 时不存在这样的表。
我出错的任何建议。我从一个星期拉我的头发。请帮忙。 提前致谢。
【问题讨论】:
-
你得到这个问题的解决方案了吗?我得到了完全一样的......