android.database.sqlite.SQLiteException:没有这样的表:
Posted
技术标签:
【中文标题】android.database.sqlite.SQLiteException:没有这样的表:【英文标题】:android.database.sqlite.SQLiteException: no such table : 【发布时间】:2016-08-23 14:41:23 【问题描述】:在运行应用程序时,尽管我检查了 sqlite 文件并且它包含监视列表表,尽管该表没有条目,但我遇到了上述错误。
DBAdapter.java
package hp.vamazon;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class DBAdapter
private static final String TAG = "DBAdapter"; //used for logging database version changes
// Field Names:
public static final String bookID = "bookid";//==KEYROW_ID
public static final String bookName = "bookname";//==KEY_TASK
public static final String bookPrice = "bbp";//==KEY_DATE
public static final String storeName = "storename";
public static final String[] ALL_KEYS = new String[] bookID,bookPrice,bookName,storeName;
// Column Numbers for each Field Name:
public static final int COL_ROWID = 0;
public static final int COL_TASK = 1;
public static final int COL_DATE = 2;
public static final int COL_STORE = 3;
// DataBase info:
public static final String DATABASE_NAME = "bookstore";
public static final String DATABASE_TABLE = "watchlist";
public static final int DATABASE_VERSION = 2; // The version number must be incremented each time a change to DB structure occurs.
//SQL statement to create database
private static final String DATABASE_CREATE_SQL =
"CREATE TABLE " + DATABASE_TABLE
+ " (" + bookID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
+ bookName + " TEXT NOT NULL, "
+ bookPrice + " TEXT, "
+ bookPrice + " TEXT "
+ ");";
private final Context context;
private DatabaseHelper myDBHelper;
private SQLiteDatabase db;
public DBAdapter(Context ctx)
this.context = ctx;
myDBHelper = new DatabaseHelper(context);
// Open the database connection.
public DBAdapter open()
db = myDBHelper.getWritableDatabase();
return this;
// Close the database connection.
public void close()
myDBHelper.close();
// Add a new set of values to be inserted into the database.
public long insertRow(String bookname, String price,String id ,String store)
ContentValues initialValues = new ContentValues();
initialValues.put(bookID,id);
initialValues.put(bookPrice,price);
initialValues.put(bookName,bookname);
initialValues.put(storeName,store);
// Insert the data into the database.
return db.insert(DATABASE_TABLE, null, initialValues);
// Delete a row from the database, by rowId (primary key)
public boolean deleteRow(long rowId)
String where = bookID + "=" + rowId;
return db.delete(DATABASE_TABLE, where, null) != 0;
public void deleteAll()
Cursor c = getAllRows();
long rowId = c.getColumnIndexOrThrow(bookID);
if (c.moveToFirst())
do
deleteRow(c.getLong((int) rowId));
while (c.moveToNext());
c.close();
// Return all data in the database.
public Cursor getAllRows()
String where = null;
Cursor c = db.query(true, DATABASE_TABLE, ALL_KEYS, where, null, null, null, null, null);
if (c != null)
c.moveToFirst();
return c;
// Get a specific row (by rowId)
public Cursor getRow(long rowId)
String where = bookID + "=" + rowId;
Cursor c = db.query(true, DATABASE_TABLE, ALL_KEYS,
where, null, null, null, null, null);
if (c != null)
c.moveToFirst();
return c;
// Change an existing row to be equal to new data.
public boolean updateRow(long rowId, String task, String date)
String where = bookID + "=" + rowId;
ContentValues newValues = new ContentValues();
newValues.put(bookName, task);
newValues.put(bookPrice, date);
// Insert it into the database.
return db.update(DATABASE_TABLE, newValues, where, null) != 0;
private static class DatabaseHelper extends SQLiteOpenHelper
DatabaseHelper(Context context)
super(context, DATABASE_NAME, null, DATABASE_VERSION);
@Override
public void onCreate(SQLiteDatabase _db)
db.execSQL(DATABASE_CREATE_SQL);
@Override
public void onUpgrade(SQLiteDatabase _db, int oldVersion, int newVersion)
Watchlist.java
package hp.vamazon;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v4.widget.SimpleCursorAdapter;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
public class Watchlist extends Activity
DBAdapter myDb;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_watchlist);
openDb();
populatListViewFromDB();
private void openDb()
myDb=new DBAdapter(this);
myDb.open();
private void populatListViewFromDB()
Cursor cursor=myDb.getAllRows();
startManagingCursor(cursor);
String []fromFieldNames=new String[]DBAdapter.bookName,DBAdapter.bookPrice,DBAdapter.storeName;
int []toViewIDs=new int[]R.id.item_name,R.id.item_price,R.id.item_store;
SimpleCursorAdapter myCursorAdapter=new SimpleCursorAdapter(this,R.layout.cartitem_view
,cursor,fromFieldNames,toViewIDs);
ListView myList=(ListView)findViewById(R.id.listView1);
myList.setAdapter(myCursorAdapter);
private void registerClickCallback()
ListView myList=(ListView)findViewById(R.id.listView1);
myList.setOnItemClickListener(new AdapterView.OnItemClickListener()
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
Cursor cursor=myDb.getRow(id);
if(cursor.moveToFirst())
myDb.deleteRow(id);
populatListViewFromDB();
cursor.close();
);
在 hp.vamazon.DBAdapter.getAllRows(DBAdapter.java:93) 在 hp.vamazon.Watchlist.populatListViewFromDB(Watchlist.java:37)
【问题讨论】:
我自己解决了这个问题,尽管感谢你们的努力。问题是我没有在每个函数中定义一个新的 SQLite 数据库实例,这导致代码没有抛出数据库异常,因为我们没有数据库。 【参考方案1】:你的扩展SQLiteOpenHelper
的类应该执行onCreate
方法中的sql命令来创建表,比如
@Override
public void onCreate(SQLiteDatabase db)
db.execSQL(DATABASE_CREATE_SQL);
是的,可以肯定的是,您已将命令创建为最终字符串DATABASE_CREATE_SQL
来创建表但忘记了execute
,因此不会创建表。为了让您注意到您的 onCreate
和 onUpgrade
方法都是空的。
查看here 如何通过扩展SQLiteOpenHelper
创建DatabaseHelper
。
【讨论】:
即使在 onCreate() 方法中添加上述行并删除表(如果存在)并在 onUpdate() 中调用 onCreate() 后,代码仍显示相同的错误。 我的应用程序中的sqlite数据库已经包含了表(通过sqlite浏览器验证),虽然表是空的 兄弟,我真的很抱歉,我请假两天,目前离我的工作区很远......但可以肯定你的桌子不是随便创建的...... 你的提示真的很有用,我真的没想到这些,【参考方案2】:android.database.sqlite.SQLiteException: 没有这样的表
在您的情况下,这是因为您尚未创建任何表而发生的。在您的 DatabaseHelper
上,您应该包含 onCreate()
。
来自文档:
第一次创建数据库时调用。这就是表的创建和表的初始填充应该发生的地方。
你应该在那里创建表格如下:
db.execSQL(DATABASE_CREATE_SQL); //It will create the table
【讨论】:
我的应用程序中的sqlite数据库已经包含了这个表(通过sqlite浏览器验证)虽然表是空的 @vibhorvaish 解决了您的问题?【参考方案3】:您在 DatabaseHelper 类中的 OnCreate 和 OnUpgrade 方法中没有任何代码。 首先你需要执行 execSQL 命令来创建表:
@Override
public void onCreate(SQLiteDatabase _db)
_db.execSQL(DATABASE_CREATE_SQL);
OnUpgrade 方法参考以下代码:
@Override
public void onUpgrade(SQLiteDatabase _db, int oldVersion, int newVersion)
String Query = "DROP TABLE IF EXISTS Your_Table_Name"
_db.execSQL(Query);
onCreate(_db);
【讨论】:
即使在 onCreate() 方法中添加上述行并删除表(如果存在)并在 onUpdate() 中调用 onCreate() 后,代码仍显示相同的错误。 我的应用程序中的sqlite数据库已经包含了表(通过sqlite浏览器验证),尽管表是空的。【参考方案4】:我自己解决了这个问题,尽管感谢你们的努力。问题是我没有在每个函数中定义一个新的 SQLite 数据库实例,这导致代码没有抛出任何数据库异常,因为我们没有数据库。
【讨论】:
以上是关于android.database.sqlite.SQLiteException:没有这样的表:的主要内容,如果未能解决你的问题,请参考以下文章