6

我在 SQLCiper 中尝试一件事。

这个东西在 SQLite 数据库中是成功的SD-CARD

1-创建了一个应用程序firstApp。与数据库SD-CARD

2-创建第二个应用程序secondApp

我正在尝试在我的第二个应用程序中从 SD-CARD 读取数据。

编辑:- 我在 SDCARD 中的数据库。

public class SdcardCipherDataBase extends SQLiteOpenHelper
{

    public static final String  DATABASE_FILE_PATH = "/sdcard";
    public static final String  DATABASE_NAME = "sdCipherDatabase";
    public final static String NAME ="name";
    public final static String ADDRESS ="address";
    public final static String CITY ="city";

    public SdcardCipherDataBase(final Context context) {
        super(context,Environment.getExternalStorageDirectory()+File.separator+DATABASE_FILE_PATH + File.separator + DATABASE_NAME, null, 1);
    }


    @Override
    public void onCreate(SQLiteDatabase db) {
        try
        {  
            db.execSQL( "CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT, address TEXT,city TEXT);");

        }

        catch (SQLiteException ex)
        {
            Log.e("Hello", "error -- " + ex.getMessage(), ex);
        }
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // TODO Auto-generated method stub
        db.execSQL("DROP Table mylistdata");
        onCreate(db);
    }
}

我在同一个应用程序中使用这个数据库:-

public void databasCollection()
    {
        SQLiteDatabase.loadLibs(this);
        File file = getDatabasePath("/mnt/sdcard/sdcard/sdCipherDatabase");
        file.mkdir();
        file.delete();
        db = SQLiteDatabase.openOrCreateDatabase(file, "myapp", null);
        sdb = new SdcardCipherDataBase(this);

        sdb.getWritableDatabase("myapp");
        ContentValues c = new ContentValues();
        c.put(SdcardCipherDataBase.NAME,"monty");
        c.put(SdcardCipherDataBase.ADDRESS,"BTM");
        c.put(SdcardCipherDataBase.CITY,"Bangalore");
        db.insert("information", SdcardCipherDataBase.NAME, c);
        db.close();
    }

但我也想在其他应用程序中使用相同的数据库。

我正在尝试做这样的事情

public void databaseFromOtherApp()
{
    SQLiteDatabase.loadLibs(this);
    File file = getDatabasePath("/mnt/sdcard/sdcard/sdCipherDatabase");
    db = SQLiteDatabase.openOrCreateDatabase(file, "myapp", null);
    dh = new DatabaseHelper(this);

    Cursor cursor = db.rawQuery("select * from information", null);
    cursor.moveToFirst();
    String s = cursor.getString(cursor.getColumnIndex(NAME));
    Toast.makeText(this,"Name is "
            +s, Toast.LENGTH_LONG).show();

    cursor.close();
    db.close();
}

但显示错误。

 Caused by: net.sqlcipher.database.SQLiteException: no such table: information: , while compiling: select * from information
4

1 回答 1

2

您的第二个应用程序中的这一行是错误的:

dh = new DatabaseHelper(this);

您还需要在您的第二个应用程序中的实例SdcardCipherDataBase,因为该类知道表和表名。目前,您正在使用DatabaseHelper不知道要寻找什么的平原。

更新:
即使你可以做你需要的,这也不是明智之举。如您所见,您需要将所有与数据库相关的逻辑复制到使用它的任何其他应用程序。如果您需要第三个应用程序来做同样的事情怎么办?再次复制所有课程?如果您需要修改表以添加新列怎么办?您必须修改所有三个应用程序中的类。通常,您希望将数据库访问层保留在第一个应用程序中,并通过内容提供程序提供对其他应用程序的访问。

于 2013-01-30T12:34:49.343 回答