【问题标题】:force close in creating simplecursor adapter在创建简单光标适配器时强制关闭
【发布时间】:2011-04-30 21:38:29
【问题描述】:

我有以下代码,它应该在列表中显示来自数据库(某个表和某个列)的内容,但我得到一个强制关闭对话框,我不知道为什么。

这是我的代码:

public class Server8 extends Activity {

DBAdapter db;

    @Override
    public void onCreate (Bundle savedInstanceState) {

       setContentView(R.layout.main);

       db=new DBAdapter(this);
       db.openDataBase();
       Cursor cursor=db.getAllData2();

       startManagingCursor(cursor);

       String[] from=new String[] {db.KEY_ROUTE};     

       int[] to = new int[] { R.id.name_entry};

       ContactListCursorAdapter items = new ContactListCursorAdapter(this, R.layout.list_example_entry, cursor, from, to);
    }

    public class ContactListCursorAdapter extends SimpleCursorAdapter{

        private Context context;

        private int layout;

        public ContactListCursorAdapter (Context context, int layout, Cursor c, String[] from, int[] to) {
            super(context, layout, c, from, to);
            this.context = context;
            this.layout = layout;
        }

        @Override
        public View newView(Context context, Cursor cursor, ViewGroup parent) {

            Cursor c = getCursor();

            final LayoutInflater inflater = LayoutInflater.from(context);

            View v = inflater.inflate(layout, parent, false);

            int nameCol = c.getColumnIndex(db.KEY_ROUTE);
            String name = c.getString(nameCol);

            TextView name_text = (TextView) v.findViewById(R.id.name_entry);
            if (name_text != null) {
                name_text.setText(name);
            }

            return v;
        }

        @Override
        public void bindView(View v, Context context, Cursor c) {

            int nameCol = c.getColumnIndex(db.KEY_ROUTE);
            String name = c.getString(nameCol);

            TextView name_text = (TextView) v.findViewById(R.id.name_entry);

            if (name_text != null) {
                name_text.setText(name);
            }
        }

在我的 DBAdapter 中有这个:

public static final String TABLE_2= "route";

public static final String KEY_ROWID_2="_id";

public static final String KEY_ROUTE= "route";

public static final String KEY_USER_ID= "user_id";

这是我查询光标的方式:

public Cursor getAllData2() 
{
    return db.query(TABLE_2, new String[] {KEY_ROUTE},null,null,null,null,null);
}

这就是我的 logcat 给我的:

04-30 09:26:24.323: ERROR/AndroidRuntime(2676): Caused by: java.lang.IllegalArgumentException: column '_id' 不存在

04-30 09:26:24.323: 错误/AndroidRuntime(2676): 在 android.database.AbstractCursor.getColumnIndexOrThrow(AbstractCursor.java:314)

04-30 09:26:24.323: 错误/AndroidRuntime(2676): 在 android.widget.CursorAdapter.init(CursorAdapter.java:111)

04-30 09:26:24.323: 错误/AndroidRuntime(2676): 在 android.widget.CursorAdapter.(CursorAdapter.java:90)

04-30 09:26:24.323: 错误/AndroidRuntime(2676): 在 android.widget.ResourceCursorAdapter.(ResourceCursorAdapter.java:47)

04-30 09:26:24.323: 错误/AndroidRuntime(2676): 在 android.widget.SimpleCursorAdapter.(SimpleCursorAdapter.java:88)

04-30 09:26:24.323: ERROR/AndroidRuntime(2676): at com.server.Server8$ContactListCursorAdapter.(Server8.java:103)

04-30 09:26:24.323: 错误/AndroidRuntime(2676): at com.server.Server8.onCreate(Server8.java:91)


原因:java.lang.IllegalArgumentException:列“_id”不存在

我什至没有要求这样的东西!

这就是我的TABLE_2 的样子:

_id         route                  user_id

1           Sebes-Alba               1             ....only one record

我做错了什么?谢谢

【问题讨论】:

    标签: android database simplecursoradapter


    【解决方案1】:

    确保您的表有一个名为_id 的列。常见的方法是将_id 列创建为_id INTEGER PRIMARY KEY AUTOINCREMENT
    然后,确保每次查询数据库时始终查询 _id

    参考资料:

    Details on column ID issues

    How to create a column

    【讨论】:

    • 它有_id.......所以这个查询不好:return db.query(TABLE_2, new String[] {KEY_ROUTE},null,null,null,null ,空值); ?
    • 试试KEY_ROWID_2,就像return db.query(TABLE_2, new String[] {KEY_ROWID_2, KEY_ROUTE},null,null,null,null,null);一样
    【解决方案2】:

    您的日志显示您的查询目标(表)中没有_id 列:

    列“_id”不存在

    您应该验证您的route 表中是否有一个名为_id 的列,如果有差异,您应该更新您的public static final String KEY_ROWID_2

    【讨论】:

    • 我知道我要的是这样一个专栏,但它不存在……但我不要求它……是的,它存在……我该怎么办有了它............我不明白你更新我的公共静态最终字符串 KEY_ 是什么意思......
    猜你喜欢
    • 1970-01-01
    • 2016-12-13
    • 1970-01-01
    • 1970-01-01
    • 2011-10-03
    • 1970-01-01
    • 1970-01-01
    • 2011-07-29
    • 1970-01-01
    相关资源
    最近更新 更多