我正在尝试在android中的sqlite数据库中写一个表,我正在使用的代码如下:
DBH = new DatabaseHelper(this);
try {
DBH.createDataBase();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
DBH.getWritableDatabase().rawQuery("insert into profile (_id, FirstName) values (1, 'Dave')", null);
DBH.close();
DBH是我的数据库助手类,它创建数据库就好了,我甚至可以从数据库中读取,所以我知道它在那里。我试图写的表是配置文件,我确信它确实存在,但每次我运行这个我得到这个错误:
sqlite returned: error code = 1, msg = no such table: profile
我试过从这张桌子上读书并且能够得到结果所以我非常难过。有人有任何想法吗?
编辑:根据要求,这是我的数据库助手类
public class DatabaseHelper extends SQLiteOpenHelper {
private static String DB_PATH = "/data/data/com.ProjectZeus.FitnessWire/databases/";
private static String DB_NAME = "fitnesswire.db";
private SQLiteDatabase myDB;
private Context myContext;
public DatabaseHelper(Context context) {
super(context,DB_NAME, null, 1);
this.myContext = context;
}
public void createDataBase() throws IOException{
boolean check = checkDataBase();
if(check){
//Log.e("Check", "Database exists");
}else{
this.getReadableDatabase();
try{
copyDataBase();
}catch(Exception e){
throw new Error("Error copying database");
}
}
}
private void copyDataBase() throws IOException {
InputStream myInput = myContext.getAssets().open(DB_NAME);
String outFileName = DB_PATH + DB_NAME;
OutputStream myOutput = new FileOutputStream(outFileName);
byte [] buffer = new byte[1024];
int length;
while((length = myInput.read(buffer))>0){
myOutput.write(buffer,0,length);
}
myOutput.flush();
myOutput.close();
myInput.close();
}
private boolean checkDataBase() {
SQLiteDatabase checkdb = null;
try{
String myPath= DB_PATH + DB_NAME;
checkdb = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
}catch(SQLiteException e){
Log.e("checkDataBase()", "Database doesntexist yet");
}
if(checkdb != null){
checkdb.close();
}
return checkdb != null ? true : false ;
}
public void openDataBase() throws SQLException {
String myPath = DB_PATH + DB_NAME;
myDB = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY);
}
@Override
public synchronized void close(){
if(myDB != null){
myDB.close();
}
super.close();
}
@Override
public void onCreate(SQLiteDatabase db) {
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
}
}
答案 0 :(得分:0)
它在Iphone中也有一些发生...数据库没有正确连接。
我们所做的(对我们有用)是我们从模拟器清除项目中删除所有项目并编译它......
我不确定它是否能在Android上运行,但你可以试试相同的
干杯
答案 1 :(得分:0)
当列不存在时也会引发此错误(我知道,这不是理想的,但它就是这样)。因此,请确保您的表中确实包含名为_id
和FirstName
的列。
答案 2 :(得分:0)
您应该使用db.execSQL()
而不是db.rawQuery()
,因为insert不是查询(仅SELECT
是
rawQuery()
中有很多魔法 - 它可能会在数据库执行之前更改语句,并尝试从结果中构建Cursor
。该过程中的某些部分似乎失败了。