当前位置: 首页 > 面试题库 >

由以下原因引起:android.database.sqlite.SQLiteException:否这样的表:strings:,而在编译时:SELECT ID,字符串FROM字符串WHERE ID =?

养枫涟
2023-03-14
问题内容

我得到这个错误

07-16 20:58:27.299: E/AndroidRuntime(14005): Caused by: android.database.sqlite.SQLiteException: no such table: strings: , while compiling: SELECT id, string FROM strings WHERE  id = ?

我有具有ID和String的StringDB类,用于将此类的对象存储到SQLite数据库中。请对其进行调试并提供解决方案。这是代码:

public class MySQLiteHelper extends SQLiteOpenHelper {


// Database Version
private static final int DATABASE_VERSION = 2;
// Database Name
private static final String DATABASE_NAME = "StringDB";

public MySQLiteHelper(Context context) {
    super(context, DATABASE_NAME, null, DATABASE_VERSION); 
}

@Override
public void onCreate(SQLiteDatabase db) {
    // SQL statement to create StringDB table
    String CREATE_StringDB_TABLE = "CREATE TABLE StringDBs ( " +
            "id INTEGER PRIMARY KEY AUTOINCREMENT, " +"string"+ "TEXT )";

    // create StringDBs table
    db.execSQL(CREATE_StringDB_TABLE);
}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    // Drop older StringDBs table if existed
    db.execSQL("DROP TABLE IF EXISTS StringDBs");

    // create fresh StringDBs table
    this.onCreate(db);
}
//---------------------------------------------------------------------

/**
 * CRUD operations (create "add", read "get", update, delete) StringDB + get all StringDBs + delete all StringDBs
 */

// StringDBs table name
private static final String TABLE_STRINGS = "strings";

// StringDBs Table Columns names
private static final String KEY_ID = "id";
private static final String KEY_STRING= "string";

private static final String[] COLUMNS = {KEY_ID,KEY_STRING};

public void addStringDB(StringDB string){

    // 1. get reference to writable DB
    SQLiteDatabase db = this.getWritableDatabase();

    // 2. create ContentValues to add key "column"/value
    ContentValues values = new ContentValues();
    values.put(KEY_STRING, string.getString()); // get author

    // 3. insert
    db.insert(TABLE_STRINGS, // table
            null, //nullColumnHack
            values); // key/value -> keys = column names/ values = column values

    // 4. close
    db.close();
}

public StringDB getStringDB(int id){

    // 1. get reference to readable DB
    SQLiteDatabase db = this.getReadableDatabase();

    // 2. build query
    Cursor cursor =
            db.query(TABLE_STRINGS, // a. table
            COLUMNS, // b. column names
            " id = ?", // c. selections
            new String[] { String.valueOf(id) }, // d. selections args
            null, // e. group by
            null, // f. having
            null, // g. order by
            null); // h. limit

    // 3. if we got results get the first one
    if (cursor != null)
        cursor.moveToFirst();

    // 4. build StringDB object
    StringDB res=new StringDB();
    res.setId(Integer.parseInt(cursor.getString(0)));
    res.setString(cursor.getString(1));


    return res;
}

// Get All StringDBs
public List<StringDB> getAllStringDBs() {
    List<StringDB> StringDBs = new LinkedList<StringDB>();

    // 1. build the query
    String query = "SELECT  * FROM " + TABLE_STRINGS;

    // 2. get reference to writable DB
    SQLiteDatabase db = this.getWritableDatabase();
    Cursor cursor = db.rawQuery(query, null);

    // 3. go over each row, build StringDB and add it to list
    StringDB StringDB = null;
    if (cursor.moveToFirst()) {
        do {
            StringDB = new StringDB();
            StringDB.setId(Integer.parseInt(cursor.getString(0)));
            StringDB.setString(cursor.getString(1));


            // Add StringDB to StringDBs
            StringDBs.add(StringDB);
        } while (cursor.moveToNext());
    }

    Log.d("getAllStringDBs()", StringDBs.toString());

    // return StringDBs
    return StringDBs;
}

 // Updating single StringDB
public int updateStringDB(StringDB StringDB) {

    // 1. get reference to writable DB
    SQLiteDatabase db = this.getWritableDatabase();

    // 2. create ContentValues to add key "column"/value
    ContentValues values = new ContentValues();
    values.put("strings", StringDB.getString()); // get author

    // 3. updating row
    int i = db.update(TABLE_STRINGS, //table
            values, // column/value
            KEY_ID+" = ?", // selections
            new String[] { String.valueOf(StringDB.getId()) }); //selection args

    // 4. close
    db.close();

    return i;

}

    // Deleting single StringDB
    public void deleteStringDB(StringDB StringDB) {

        // 1. get reference to writable DB
        SQLiteDatabase db = this.getWritableDatabase();

        // 2. delete
        db.delete(TABLE_STRINGS,
                KEY_ID+" = ?",
                new String[] { String.valueOf(StringDB.getId()) });

        // 3. close
        db.close();

        Log.d("deleteStringDB", StringDB.toString());

    }
}

问题答案:
  1. private static final String DATABASE_NAME = "StringDB";添加

    private static final String TABLE_NAME = "strings";
    
  2. 改变 String CREATE_StringDB_TABLE = "CREATE TABLE StringDBs ( " + "id INTEGER PRIMARY KEY AUTOINCREMENT, " +"string"+ "TEXT )";

    String CREATE_StringDB_TABLE = "CREATE TABLE " + TABLE_NAME + " (id " +
    "INTEGER PRIMARY KEY AUTOINCREMENT, string TEXT)";
  1. onUpgrade@下更改db.execSQL

    db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
  1. 将的所有引用更改 TABLE_STRINGSTABLE_NAME


 类似资料:
  • 尽量使用字符串插值,而不是字符串拼接 # 错误 email_with_name = user.name + ' <' + user.email + '>' # 正确 email_with_name = "#{user.name} <#{user.email}>" 另外,记住 Ruby 1.9 风格的字符串插值。比如说你要构造出缓存的 key 名: CACHE_KEY = '_store' ca

  • Objective-C编程语言中的字符串使用NSString表示,其子类NSMutableString提供了几种创建字符串对象的方法。 创建字符串对象的最简单方法是使用Objective-C @“...”构造 - NSString *greeting = @"Hello"; 下面显示了创建和打印字符串的简单示例。 #import <Foundation/Foundation.h> int mai

  • Rexx中的字符串由一系列字符表示。 以下程序是字符串的示例 - /* Main program */ a = "This is a string" say a 上述计划的输出如下 - This is a string 让我们讨论Rexx中可用于字符串的一些方法。 Sr.No. Rexx for Strings中提供的方法 1 left 此方法从字符串的左侧返回一定数量的字符。 2 ri

  • 本章将向您介绍Scala字符串。 在Scala中,与Java一样,字符串是不可变对象,即无法修改的对象。 另一方面,可以修改的对象(如数组)称为可变对象。 字符串是非常有用的对象,在本节的其余部分中,我们提供了java.lang.String类的重要方法。 创建一个字符串 以下代码可用于创建字符串 - var greeting = "Hello world!"; or var greeting:S

  • 在VB.Net中,您可以使用字符串作为字符数组,但更常见的做法是使用String关键字来声明字符串变量。 string关键字是System.String类的别名。 创建一个String对象 您可以使用以下方法之一创建字符串对象 - 通过将字符串文字分配给String变量 通过使用String类构造函数 通过使用字符串连接运算符(+) 通过检索属性或调用返回字符串的方法 通过调用格式化方法将值或对象

  • String对象允许您使用一系列字符。 与大多数编程语言一样,CoffeeScript中的字符串使用引号声明为 - my_string = "Hello how are you" console.log my_string 在编译时,它将生成以下JavaScript代码。 // Generated by CoffeeScript 1.10.0 (function() { var my_str