2012-04-27 56 views
0

我想填充我从我的数据库中的数据列表视图,但是当我尝试这样做,它只是给我一个例外,即如果不通过Simplecursor适配器来填充的ListView

"04-27 13:15:51.139: E/AndroidRuntime(2575): Caused by: java.lang.IllegalArgumentException: column '_id' does not exist" 

不管我用什么适配器或者我得到这个例外。

这是我SQLiteOpenHelper

public class MySQLiteHelper extends SQLiteOpenHelper { 

    //  Table Names 
    public static final String TABLE_USER_MASTER = "USER_MASTER"; 
    public static final String TABLE_ORDER_MASTER = "ORDER_MASTER"; 
    public static final String TABLE_ORDER_DETAILS = "ORDER_DETAILS"; 

    //  Database Details 
    public static String DB_NAME = "ezeefood.db"; 
    public static String DB_PATH = "/data/data/com.project.menuApp"; 
    public static final int DATABASE_VERSION = 4; 

    //  User Detail Columns 
    public static final String KEY_ID = "_id"; 
    public static final String KEY_NAME = "Name"; 
    public static final String KEY_ADDRESS = "Address"; 
    public static final String KEY_PHONE = "PhoneNo"; 
    public static final String KEY_USERNAME = "userid"; 
    public static final String KEY_PASSWORD = "password"; 

    //  Order Master Columns 
    public static final String ORDER_ID = "order_id"; 
    public static final String ORDER_DATE = "date"; 
    public static final String ORDER_TIME = "time"; 

    //  Order Detail Columns 
    public static final String ORDER_DETAIL_ID = "order_detail_id"; 
    public static final String ORDER_ITEM_NAME = "item_name"; 
    public static final String ORDER_ITEM_RATE = "item_rate"; 
    public static final String ORDER_ITEM_QTY = "item_qty"; 
    public static final String ORDER_ID_FINAL = "order_Id"; 

    private SQLiteDatabase sqLiteDatabase; 

    private static final String SCRIPT_CREATE_TABLE_USER_MASTER = "CREATE TABLE " 
      + TABLE_USER_MASTER + "(" + KEY_ID 
      + " INTEGER PRIMARY KEY AUTOINCREMENT," + KEY_USERNAME + " VARCHAR UNIQUE, " 
      + KEY_PASSWORD + " VARCHAR," + KEY_NAME + " VARCHAR," 
      + KEY_ADDRESS + " VARCHAR," + KEY_PHONE + " VARCHAR);"; 

    private static final String SCRIPT_CREATE_TABLE_ORDER_MASTER = "CREATE TABLE " 
      + TABLE_ORDER_MASTER + "(" + ORDER_ID 
      + " INTEGER PRIMARY KEY AUTOINCREMENT," + KEY_USERNAME + " VARCHAR, " 
      + ORDER_DATE + " VARCHAR," + ORDER_TIME +" VARCHAR);"; 

    private static final String SCRIPT_CREATE_TABLE_ORDER_DETAILS = "CREATE TABLE " 
      + TABLE_ORDER_DETAILS + "(" + ORDER_DETAIL_ID 
      + " INTEGER PRIMARY KEY AUTOINCREMENT," + ORDER_ID_FINAL + " INTEGER, " 
      + ORDER_ITEM_NAME + " VARCHAR," + ORDER_ITEM_RATE + " FLOAT," 
      + ORDER_ITEM_QTY + " INTEGER DEFAULT 1);"; 

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

    @Override 
    public void onCreate(SQLiteDatabase database) { 
     database.execSQL(SCRIPT_CREATE_TABLE_USER_MASTER); 
     database.execSQL(SCRIPT_CREATE_TABLE_ORDER_MASTER); 
     database.execSQL(SCRIPT_CREATE_TABLE_ORDER_DETAILS); 
    } 

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

     Log.w(MySQLiteHelper.class.getName(), 
       "Upgrading database from version " + oldVersion + " to " 
         + newVersion + ", which will destroy all old data"); 
     db.execSQL("DROP TABLE IF EXISTS " + TABLE_USER_MASTER); 
     db.execSQL("DROP TABLE IF EXISTS " + TABLE_ORDER_MASTER); 
     db.execSQL("DROP TABLE IF EXISTS " + TABLE_ORDER_DETAILS); 
     onCreate(db); 
    } 
} 

而这正是我试图填充通过简单的鼠标适配器列表视图我。

public class FinalOrder extends ListActivity { 

    Cursor cursor; 
    long orderId; 
    private SQLiteDatabase mDatabase; 
    private MySQLiteHelper mDbhelper; 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.orderdetails); 
     Bundle c = getIntent().getExtras(); 
     orderId = c.getLong("orderID"); 
     mDbhelper = new MySQLiteHelper(this); 
     mDatabase = mDbhelper.getReadableDatabase();  
     cursor = mDatabase.query(MySQLiteHelper.TABLE_ORDER_DETAILS, new String [] {MySQLiteHelper.ORDER_ITEM_NAME, 
       MySQLiteHelper.ORDER_ITEM_QTY,MySQLiteHelper.ORDER_ITEM_RATE}, "order_Id = ?", 
       new String[]{String.valueOf(orderId)}, null, null, null); 
     startManagingCursor(cursor); 

     String[] from = new String[] {MySQLiteHelper.ORDER_ITEM_NAME,MySQLiteHelper.ORDER_ITEM_QTY,MySQLiteHelper.ORDER_ITEM_RATE}; 
     int[] to = new int[] {R.id.tv_listItemName,R.id.tv_listItemQTY,R.id.tv_listItemPrice}; 

     ListAdapter adapter = new SimpleCursorAdapter(this,R.layout.orderlist_row,cursor,from,to); 

     setListAdapter(adapter); 
    } 
} 

我不知道为什么没有给出这样的一个例外,我没有列在我访问我的表名“_id”。请帮忙。谢谢!

回答

2

您正在访问TABLE_ORDER_DETAILS表,其中有ORDER_DETAIL_ID列,但是这是"order_detail_id"而不是"_id"。它应该工作,如果你改变,因为SimpleCursorAdapter期望在光标中精确命名为_id的列。

您还必须在查询中包含id列。没有在表列更名速战速决是它在重命名查询:

cursor = mDatabase.query(MySQLiteHelper.TABLE_ORDER_DETAILS, 
      new String [] { MySQLiteHelper.ORDER_DETAIL_ID + " AS _id", 
      MySQLiteHelper.ORDER_ITEM_NAME, 
      MySQLiteHelper.ORDER_ITEM_QTY, 
      MySQLiteHelper.ORDER_ITEM_RATE }, "order_Id = ?", 
      new String[]{String.valueOf(orderId)}, null, null, null); 
+0

我记得特别详细,因为它需要_id,但看着为SimpleCursorAdapter的文件,它不会在任何地方说,它的需要......但它是。 – JoxTraex 2012-04-27 08:12:35

+0

嗯真的没有SimpleCursorAdapter关于这方面的文档。它在[CursorAdapter](http://developer.android.com/reference/android/widget/CursorAdapter.html)然而(那是超类) – zapl 2012-04-27 08:29:14

+0

很好找,谢谢澄清! – JoxTraex 2012-04-27 08:30:33