Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/179.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android table game没有名为title:的列,编译时:插入到游戏(title、rating、info)值(?、、?);_Android - Fatal编程技术网

Android table game没有名为title:的列,编译时:插入到游戏(title、rating、info)值(?、、?);

Android table game没有名为title:的列,编译时:插入到游戏(title、rating、info)值(?、、?);,android,Android,尝试将项目插入数据库时出错 这是Logcat的内容: android.database.sqlite.SQLiteException table game has no column named title: , while compiling: INSERT INTO game(title, rating, info) VALUES (?, ?, ?); 这是我的数据库管理器: package com.herring.android.finalproject; import androi

尝试将项目插入数据库时出错

这是Logcat的内容:

android.database.sqlite.SQLiteException table game has no column named title: , while compiling: INSERT INTO game(title, rating, info)  VALUES (?, ?, ?);
这是我的数据库管理器:

package com.herring.android.finalproject;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;

public class GameDataBaseManager {

    private DatabaseHelper mDbHelper;
    private SQLiteDatabase mDb;
    private static final String DATABASE_NAME = "data";
    private static final int DATABASE_VERSION = 1;  
    private final Context mCtx;
    private static final String GAME_TABLE_NAME = "game";
    public static final String KEY_ROWID = "_id";
    public static final String KEY_TITLE = "title";
    public static final String KEY_BODY = "info";
    public static final String KEY_RATING = "rating";
    private static final String GAME_TABLE_CREATE = "create table " + GAME_TABLE_NAME + " ( " + 
            KEY_ROWID + " INTEGER PRIMARY KEY AUTOINCREMENT, " + 
            KEY_TITLE + " TEXT NOT NULL, " +
            KEY_BODY + " TEXT NOT NULL, " + 
            KEY_RATING + " NUM NOT NULL );";


    public GameDataBaseManager(Context ctx)
    {
        this.mCtx = ctx;
    }


    public long addRow(String rowStringOne, String rowStringTwo, float rating)
    {
        ContentValues values = new ContentValues();
        values.put(KEY_TITLE, rowStringOne);
        values.put(KEY_BODY, rowStringTwo);
        values.put(KEY_RATING, rating);
        return mDb.insert(GAME_TABLE_NAME, null, values);
    }
    public void deleteRow(long rowID)
    {
        try
        {
            mDb.delete(GAME_TABLE_NAME, KEY_ROWID + " = " + rowID, null);
        }
        catch(Exception e)
        {
            Log.e("DB ERROR", e.toString());
            e.printStackTrace();
        }
    }


    public GameDataBaseManager open() throws android.database.SQLException
    {
        mDbHelper = new DatabaseHelper(mCtx);
        mDb = mDbHelper.getWritableDatabase();
        return this;
    }

    public void close()
    {
        mDbHelper.close();
    }

    public Cursor getAllGames()
    {
        return mDb.query(GAME_TABLE_NAME, null, null,
                null, null, null, null);
    }

    public Cursor fetchGame(long rowId) throws SQLException
    {
        Cursor mCursor = mDb.query(true, GAME_TABLE_NAME, new String[]{KEY_ROWID, KEY_TITLE, KEY_BODY, KEY_RATING}, 
                KEY_ROWID + "=" + rowId, null, null, null, null, null);
        if(mCursor != null)
        {
            mCursor.moveToFirst();
        }
        return mCursor;
    }

    public boolean updateDb(long rowId, String title, String body, String rating)
    {
        ContentValues args = new ContentValues();
        args.put(KEY_TITLE, title);
        args.put(KEY_BODY, body);
        args.put(KEY_RATING, rating);

        return mDb.update(GAME_TABLE_NAME, args, KEY_ROWID + " = " + rowId, null) > 0;
    }

    public class DatabaseHelper extends SQLiteOpenHelper {
        public DatabaseHelper(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
        }

        @Override
        public void onCreate(SQLiteDatabase db) {
            db.execSQL(GAME_TABLE_CREATE);

        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

        }
    }
}
以下是我尝试插入项目的活动:

package com.herring.android.finalproject;

import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;

public class TopRatedActivity extends Activity {
    private Cursor gamesCursor;
    private ListView lv;
    private GameDataBaseManager mDbHelper;
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        mDbHelper = new GameDataBaseManager(this);
        mDbHelper.open();
        mDbHelper.addRow("Game", "Info", 0);
        setContentView(R.layout.toprated);
        fillData();

    }
    private void fillData()
    {
        gamesCursor = mDbHelper.getAllGames();
        startManagingCursor(gamesCursor);
        String[] from = new String[]{GameDataBaseManager.KEY_TITLE};
        int[] to = new int[]{R.id.text1};
        SimpleCursorAdapter games = new SimpleCursorAdapter(this, R.layout.toprateditem, gamesCursor, from, to);
        lv.setAdapter(games);
    }
}

非常感谢您的帮助。

您的数据库中有一个名为“game”的表。但它没有一个叫做“标题”的栏目。您可以尝试删除整个数据库,然后重新创建它。

我想我已经将它添加到游戏表中了。错了吗?卸载应用程序。。。我敢打赌,您已经创建了这个没有此列的表,然后在代码中添加了它。。。但是emulator/设备上的db没有更改(您没有更改数据库_版本)(好吧,即使您更改它也不会工作,因为您的onUpgrade方法是空的,通常我们会删除旧表并在此处重新创建,或者我们可以执行更改表或其他操作)这是emulator(或)手机上的问题吗?我正在emulator上运行此操作。您的查询看起来没问题(除非我遗漏了什么),你们能从emulator完全卸载应用程序,然后再试一次吗?我同意@ThinkStipe的观点,代码和查询似乎没问题。。。