-3

我对android编程很陌生。我想使用 SQLiteOpenHelper 类来做一些数据库操作。这是我的扩展 SQLiteOpenHelper 的 SqliteController 类:

public class SqliteController extends SQLiteOpenHelper {
Context context;

public SqliteController(Context context) {
    super(context, "sectionsDB", null, 1);
    this.context = context;

}

@Override
public void onCreate(SQLiteDatabase db) {
    String query;
    query = "CREATE TABLE Sections ( chapterName TEXT, sectionName TEXT, body TEXT)";
    db.execSQL(query);
    Log.i("tablecreation", "table created");
}
}

(我刚刚提到了我有问题的部分)在我的主要活动中,我在活动的 onCreate 方法中创建了上述类的实例,如下所示:

SqliteController controller = new SqliteController(this);

我想通过在 SqliteController 的 onCreate 方法中读取一次 xml 文件来填充数据库,因此在主要活动中新建 SqliteController 之后,我不想对数据库进行任何操作。如果我添加controller.getWritableDatabase();它似乎我有一些操作要做,但我所做的只是在 SqliteController 类中。有什么建议吗?

4

1 回答 1

1

You can add something like this:

 SqliteController controller = new SqliteController(this);
 controller.getWritableDatabase();
于 2015-12-25T11:24:28.600 回答