1

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

这是我的代码:

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: 错误/AndroidRuntime(2676): 由: java.lang.IllegalArgumentException: 列 '_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: 错误/AndroidRuntime(2676): 在 com.server.Server8$ContactListCursorAdapter.(Server8.java:103)

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


引起:java.lang.IllegalArgumentException:列'_id'不存在

我什至不要求这样的东西!

这就是我的TABLE_2样子:

_id         route                  user_id

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

我做错了什么?谢谢

4

2 回答 2

2

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

参考:

列 ID 问题的详细信息

如何创建列

于 2011-04-30T21:57:11.990 回答
0

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

列“_id”不存在

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

于 2011-04-30T21:52:12.050 回答