【问题标题】:force close at cursor line!强制关闭光标线!
【发布时间】:2011-03-25 16:01:20
【问题描述】:

喂! 我正在尝试创建一个应用程序来查找存储在 SQlite 数据库中的 gps 数据。 但我面临一个问题: 我构建了一个 DbAdapter 类来创建我的数据库,现在我正在尝试从另一个类中获取所有数据上的光标,使用这个函数:

public Cursor fetchAllData() {

        return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_LONGITUDE,KEY_LATITUDE,KEY_COUNTRY,KEY_TOWN,KEY_STREET}, null, null, null, null, null);
    }

现在,我在我的新类中创建了一个 DbAdapter 实例,但是当我插入此行时,我得到了 forceclose:Cursor c=db.fetchAllData();

创建我的数据库的类如下所示:

package test.android;

import java.util.ArrayList;
import java.util.List;

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 CoordonateDbAdapter {


    public static final String KEY_ROWID = "_id";
    public static final String KEY_LONGITUDE= "longitude";
    public static final String KEY_LATITUDE = "latitude";
    public static final String KEY_COUNTRY= "country";
    public static final String KEY_TOWN= "town";
    public static final String KEY_STREET = "street";

    private static final String TAG = "CoordonateDbAdapter";
    private DatabaseHelper mDbHelper;
    private SQLiteDatabase mDb;

    private static final String DATABASE_CREATE =
            "create table car1 (_id integer primary key autoincrement, "
                    + "longitude text not null, latitude text not null," +
                   "country text not null,town text not null,street text not null);";

    private static final String DATABASE_NAME = "gps";
    private static final String DATABASE_TABLE = "masini";
    private static final int DATABASE_VERSION = 1;

    private final Context mCtx;

    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);
        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
                    + newVersion + ", which will destroy all old data");
            db.execSQL("DROP TABLE IF EXISTS notes");
            onCreate(db);
        }
    }
    public CoordonateDbAdapter(Context ctx) {
        this.mCtx = ctx;
    }
    public CoordonateDbAdapter open() throws SQLException {
        mDbHelper = new DatabaseHelper(mCtx);
        mDb = mDbHelper.getWritableDatabase();
        return this;
    }

    public void close() {
        mDbHelper.close();
    }
    public long insertData(String longitude, String latitude, String country, String town, String street) {
        ContentValues initialValues = new ContentValues();
        initialValues.put(KEY_LONGITUDE, longitude);
        initialValues.put(KEY_LATITUDE, latitude);
        initialValues.put(KEY_COUNTRY, country);
        initialValues.put(KEY_TOWN, town);
        initialValues.put(KEY_STREET, street);

        return mDb.insert(DATABASE_TABLE, null, initialValues);
    }
    public boolean deleteData(long rowId) {

        return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
    }
   public Cursor fetchAllData() {

        return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_LONGITUDE,KEY_LATITUDE,KEY_COUNTRY,KEY_TOWN,KEY_STREET}, null, null, null, null, null);
    }
    public Cursor fetchData(long rowId) throws SQLException {

        Cursor mCursor = mDb.query(true, DATABASE_TABLE, new String[] 
                    {KEY_ROWID, KEY_LONGITUDE,KEY_LATITUDE,KEY_COUNTRY,KEY_TOWN,KEY_STREET}, 
                     KEY_ROWID + "=" + rowId, null, null, null, null, null);
        if (mCursor != null) {
            mCursor.moveToFirst();
        }
        return mCursor;
    }
    public boolean updateNote(long rowId, String longitude, String latitude,String country, String town,String street) {
        ContentValues args = new ContentValues();
        args.put(KEY_LONGITUDE, longitude);
        args.put(KEY_LATITUDE, latitude);
        args.put(KEY_COUNTRY, country);
        args.put(KEY_TOWN, town);
        args.put(KEY_STREET, street);

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

    public List<String> selectAll() {

       List<String> list = new ArrayList<String>();
       Cursor cursor = this.mDb.query(DATABASE_TABLE, new String[] { "longitude"},

         null, null, null, null, "name desc");

       if (cursor.moveToFirst()) {

          do {

             list.add(cursor.getString(0));

          } while (cursor.moveToNext());

       }
       if (cursor != null && !cursor.isClosed()) {

          cursor.close();

       }

       return list;

    }
}

而获取gps数据的类是这样的:

package test.android;

import java.util.List;

import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.widget.Toast;
public class screen_database extends Activity{

      public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.screen_database);
           CoordonateDbAdapter db = new CoordonateDbAdapter(this); 
          db.open();
          long id;
      //    id= db.insertData("-36.2", "125","Romania","Cluj","Zorilor");
      //    db.insertData("44", "55","Romania","Iasi","Alexandru Ioan Cuza");
       //   List<String> names = db.selectAll();
           Cursor c=db.fetchAllData();

         /*  if (c.moveToFirst())
            {
                do {          
                  //  DisplayTitle(c);
                } while (c.moveToNext());
            }*/
         //   c.close();

        }

      /*  public void DisplayTitle(Cursor c)
        {
            Toast.makeText(this, 
                    "longitude: " + c.getString(0) + "\n" +
                    "latitude: " + c.getString(1) + "\n" +
                    "country: " + c.getString(2) + "\n" +
                    "town:  " + c.getString(3),
                    Toast.LENGTH_LONG).show();        
        }*/ 
}
//}

你可以看到很多是 cmets 的行,因为我在请求光标时会强制关闭,所以我尽量保持简单。 我是否需要任何权限才能使用光标,因为我在互联网上查看并且所有行代码看起来都像我的?! 另一个问题是我的应用程序非常大,我正在从其他类中访问这些类......一长串类,直到我从 Sqlite 查询。 如果您能帮助我,我真的很感激,这可能很简单,但我无法弄清楚它是什么。谢谢!!!

【问题讨论】:

  • 如果你知道哪里出了问题,请帮助我,因为我没有想法......我真的很迫切地要解决这个问题:)
  • mDB 在您调用db.fetchAllData() 时绝对不为空?
  • 嗯,通常我有上面的工作...
  • id= db.insertData("-36.2", "125","罗马尼亚","克鲁日","Zorilor"); db.insertData("44", "55","Romania","Iasi","Alexandru Ioan Cuza");...在我发表的评论中是 cmets,但在我的代码中是有效的,所以我应该有里面的东西:)
  • 你试过用 try/catch 块换行吗?异常的细节是什么?

标签: java android sqlite


【解决方案1】:

先尝试通过复制直接访问

    return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_LONGITUDE,KEY_LATITUDE,KEY_COUNTRY,KEY_TOWN,KEY_STREET}, null, null, null, null, null);

而不是通过方法调用它。 如果可行,请检查方法中是否有光标。 如果是,请尝试减少 SQLQuery 之类的

    return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_LONGITUDE}, null, null, null, null, null);

并逐步添加更多列。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2012-05-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-11-02
    • 1970-01-01
    相关资源
    最近更新 更多