SQLite返回:错误代码= 1

时间:2013-02-10 18:11:30

标签: android android-sqlite

我在资产文件夹中有一个预填充的数据库,我在第一次运行时移动到内部存储。它在某些设备上运行正常,但在某些设备上我收到以下错误:sqlite returned: error code = 1, msg = no such table: FTSgesla, db=/data/data/com.example.enigmar/databases/gesla 提到的表格肯定存在,所以我不知道问题出在哪里。

SQLiteOpenHelper代码:

public static class DictionaryOpenHelper extends SQLiteOpenHelper 
{

    private final Context mHelperContext;
    private SQLiteDatabase mDatabase;

    //private static String DB_PATH="/data/data/com.example.enigmar/databases/";
    private static String DB_PATH="";
    private static final String DB_NAME = "gesla";

    DictionaryOpenHelper(Context context) 
    {
        super(context, DB_NAME, null, 1);
        //
        DB_PATH = "/data/data/" + context.getPackageName() + "/databases/";
        //
        this.mHelperContext = context;

    }

    @Override
    public void onCreate(SQLiteDatabase db)
    {


    }


    public void createDataBase() throws IOException
    {

        boolean mDataBaseExist = checkDataBase();

        if(!mDataBaseExist)
        {
            this.getReadableDatabase();
            this.close();
            new Thread(new Runnable() 
            {
                public void run()
                {
                    try 
                    {
                        copyDataBase();
                        Log.e(TAG, "createDatabase database created");
                        BAZA_NAREJENA=true;
                    } 
                    catch (IOException e) 
                    {
                        throw new RuntimeException(e);
                    }
                }
            }).start();

        }

    }

    private boolean checkDataBase()
    {

        File dbFile = new File(DB_PATH + DB_NAME);
        return dbFile.exists();

    }

    private void copyDataBase() throws IOException
    {

        InputStream mInput = mHelperContext.getAssets().open(DB_NAME);
        //final Resources resources = mHelperContext.getResources();

        String outFileName = DB_PATH + DB_NAME;

        OutputStream mOutput = new FileOutputStream(outFileName);
        //InputStream mInput = resources.openRawResource(R.raw.gesla);

        byte[] mBuffer = new byte[1024];
        int mLength;
         while ((mLength = mInput.read(mBuffer))>0)
         {
             mOutput.write(mBuffer, 0, mLength);
         }
         mOutput.flush();
         mOutput.close();
         mInput.close();

        }

    public boolean openDataBase() throws SQLException
    {

        String mPath = DB_PATH + DB_NAME;
        mDatabase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.CREATE_IF_NECESSARY);
        return mDatabase != null;
    }


    @Override
    public synchronized void close() {

    if(mDatabase != null)
        mDatabase.close();

    super.close();

    }

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

    }

}

}

有什么问题?

2 个答案:

答案 0 :(得分:1)

public void createDataBase()中,您正在使用线程来复制数据库。在尝试访问之前,您确定已完成副本吗?这是我的代码工作副本,与您可能想要see非常相似。另一件事是

byte[] mBuffer = new byte[1024];

尝试4096,之前我遇到过1024的问题。

答案 1 :(得分:0)

检查数据库中是否存在表确实。最有可能的是,实际数据库是空的,因为您没有在onCreate函数中执行任何(其中一个应该初始化数据库)。相反,您可能是以下之一:

不要将SQLiteDatabase.CREATE_IF_NECESSARY传递给openDatabase,而是调用您当前未使用的函数createDataBase

或者,通过复制默认数据库的数据,在onCreate中创建数据库。为此,您需要另一个函数将现有的资产内数据库转换为SQL命令。