【发布时间】:2014-01-05 20:44:41
【问题描述】:
我正在尝试使用几个 http 请求来填充数据库中的几个表和 android 应用程序。当这些表格被填充时,表格中的部分数据将填充并展开视图。问题是我收到一条错误消息,告诉我我正在尝试创建的表尚未创建。
错误日志:
01-05 13:33:29.811: E/SQLiteLog(1823): (1) no such table: lvl2List
01-05 13:33:29.831: E/AndroidRuntime(1823): android.database.sqlite.SQLiteException: no such table: lvl2List (code 1): , while compiling: SELECT id, Title, Description FROM lvl2List
这是我的代码:
MainActivity.java
public class MainActivity extends Activity
{
private List<lvItem> myLVItems = new ArrayList<lvItem>();
private List<Parent> myParent = new ArrayList<Parent>();
ExpandableListView exv;
final DBHelper db2 = new DBHelper(this);
@Override
protected void onCreate(Bundle savedInstanceState) {
exv=(ExpandableListView)findViewById(R.id.expandableListView1);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
db2.open();
lvl3 lvl3Item = new lvl3();
lvl3Item.popDB(db2, myParent);
}
}
DBHelper.java
public class DBHelper
{
private static final String Database_Name = "MyDBs";
private static final int Database_Version = 2;
public static final String Key_ID = "id";
public static final String Key_Title = "Title";
public static final String Key_Summary = "Summary";
public static final String Key_Book = "Book";
public static final String Key_Chapter = "Chapter";
public static final String Key_Description = "Description";
public static final String Key_SourceType = "SourceType";
private static final String Lvl3_Table_Name = "lvl3";
private static final String Lvl2_Table_Name = "lvl2List";
private static final String Lvl1_Table_Name = "lvl1List";
private static final String Lvl3_Create = "CREATE TABLE IF NOT EXISTS lvl3 (id integer primary key autoincrement, "
+"Summary VARCHAR, Book VARCHAR, Chapter VARCHAR, Description VARCHAR, SourceType VARCHAR);";
private static final String Lvl2_Create = "CREATE TABLE IF NOT EXISTS lvl2List (id integer primary key autoincrement, "
+"Title VARCHAR, Description VARCHAR);";
private static final String Lvl1_Create = "CREATE TABLE IF NOT EXISTS lvl1List (id integer primary key autoincrement, "
+"Title VARCHAR, Description VARCHAR);";
public DBHelper(Context ctx) {
this.context = ctx;
DBhelper = new DatabaseHelper(context);
}
private static class DatabaseHelper extends SQLiteOpenHelper
{
DatabaseHelper(Context context)
{
super(context, Database_Name, null, Database_Version);
}
@Override
public void onCreate(SQLiteDatabase db)
{
try
{
db.execSQL(Lvl3_Create);
db.execSQL(Lvl2_Create);
db.execSQL(Lvl1_Create);
}catch(SQLException e){
}
}
public long insertLvl2Record(String Title, String Description)
{
ContentValues initialValues = new ContentValues();
initialValues.put(Key_Title, Title);
initialValues.put(Key_Description, Description);
return db.insert(Lvl2_Table_Name, null, initialValues);
}
public long insertLvl3Record(String Summary, String Book, String Chapter, String Description, String SourceType)
{
ContentValues initialValues = new ContentValues();
initialValues.put(Key_Summary, Summary);
initialValues.put(Key_Book, Book);
initialValues.put(Key_Chapter, Chapter);
initialValues.put(Key_Description, Description);
initialValues.put(Key_SourceType, SourceType);
return db.insert(Lvl3_Table_Name, null, initialValues);
}
public int getLvl2Count()
{
Cursor c = db.query(Lvl2_Table_Name, new String[] {Key_ID, Key_Title,Key_Description},
null, null, null, null, null);
return c.getCount();
}
public int getLvl3Count()
{
Cursor c = db.query(Lvl3_Table_Name, new String[] {Key_ID, Key_Summary,Key_Book,Key_Verse,Key_Scripts,Key_Description,Key_SourceType}, null, null, null, null, null);
return c.getCount();
}
lvl3.java
public class lvl3
{
DBHelper db2;
List<Parent> parent;
public void popDB(DBHelper db, List<Parent> myParent)
{
this.db2 = db;
this.parent = myParent;
Lvl3Thread lvl3theard = new Lvl3Thread();
lvl3theard.execute();
}
public class Lvl3Thread extends AsyncTask<String, Integer, String>{
@Override
protected String doInBackground(String... params)
{
//Httprequest that get the data for the database… this works
}
@Override
protected void onPostExecute(String result)
{
lvl2 lvl2Item = new lvl2();
lvl2Item.popDB(db2, parent);
}
}
}
lvl2.java
public class lvl3
{
DBHelper db2;
List<Parent> parent;
public void popDB(DBHelper db, List<Parent> myParent)
{
this.db2 = db;
this.parent = myParent;
Lvl3Thread lvl3theard = new Lvl3Thread();
lvl3theard.execute();
}
public class Lvl3Thread extends AsyncTask<String, Integer, String>{
@Override
protected String doInBackground(String... params)
{
//Httprequest that get the data for the database… this works
}
@Override
protected void onPostExecute(String result)
{
lvl2 lvl2Item = new lvl2();
lvl2Item.popDB(db2, parent);
}
}
public void popLvl2List(DBHelper db)
{
List<lvItem> childlvItems = new ArrayList<lvItem>();
Cursor cLvl3 = db.getAllLvl3Records();
db.getLvl2Count(); //This is where the error is coming from stating that there is no lvl2List table
}
}
我尝试过使用db2.detLvl2Count();,但这不起作用。如果我注释该行 out the program will run. I have tried reordering thedb.execSQLso that db.execSQL(Lvl2_Create); 是第一行,但我仍然收到表不存在的错误。
【问题讨论】:
-
你为什么使用
Key_ID, Key_Title,Key_Description,列名是id、Title和Description。 -
你使用的是什么底层数据库?通常,
varchar作为一种类型需要最大长度(类似于varchar(255))。 -
@RohanKandwal 我编辑了 DBHelper.java 以阐明 Key_ID、Key_Title、Key_Description... 谢谢
-
@GordonLinoff 我正在使用 SQLiteDatabase。所有 VarChar 都将低于 255
-
@user908759
onCreate您的DBHelper类只会在您第一次打开应用程序并调用该类时被调用。您后来有没有偶然添加lvl2List表?如果是这样,请尝试重新安装该应用程序并重试。添加/更改 SQL 表时,使用onUpgrade方法:developer.android.com/reference/android/database/sqlite/…, int, int) 同样在DBHelper的onCreate方法中,您正在“吃掉”SQLException- 不要这样做 -它可能会为您提供有趣的信息;-)
标签: android sql httprequest