为了连接或连接SQLite s3db文件以连接Android应用程序,需要编写什么代码?代码必须放在哪里?
答案 0 :(得分:1)
在您的主要活动设置数据库中。
private void setupDatabase()
{
Dbhelper myDbHelper = new Dbhelper(getApplicationContext());
myDbHelper = new Dbhelper(this);
try {
myDbHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to create database");
}
}