Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Caused by: java.lang.IllegalArgumentException: column '_id' does not exist

i want to show my table using cursor and list view. but i got error.

 Caused by: java.lang.IllegalArgumentException: column '_id' does not exist

but i didn't declare _id in my application. can somebody help me?

this is my code in dbHelper.

public Cursor DataPesanKeluar() {
    Cursor c = dba.rawQuery(
            " SELECT "
            + kel_id + ","
            + e_chiperteks + ","
            + k_nama + ","
            + kel_waktu +
            " FROM " + tbPesan + " INNER JOIN " + tbPesanKeluar +
            " ON "  + tbPesan + "." + p_idpesan + "=" + tbPesanKeluar + "." + kel_idpesan +
            " INNER JOIN " + tbEnkrip +
            " ON " + tbPesan + "." + p_idenkrip + "=" + tbEnkrip + "." + e_idenkrip +
            " INNER JOIN " + tbKontak + 
            " ON " + tbPesan + "." + p_idkontak + "=" + tbKontak + "." + k_id , null);
    return c;
}

and this is my class to display data.

listKeluar = (ListView)findViewById(R.id.listKeluar);

    String [] keluar = { data.k_nama, data.m_chiperteks, data.kel_waktu };
    int[] k = { R.id.tNama, R.id.tChiper, R.id.tWaktu };
    cursor = data.DataPesanKeluar();
    SimpleCursorAdapter keluarAdapter = new SimpleCursorAdapter( this, R.layout.baris_keluar, cursor, keluar, k ); //this is my error
    listKeluar.setAdapter(keluarAdapter);
    listKeluar.setOnItemClickListener( new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView arg0, View arg1, int arg2, long arg3) {
            Cursor listCursor = (Cursor) arg0.getItemAtPosition(arg2);
            String idkeluar = listCursor.getString(listCursor.getColumnIndex(data.kel_id));
            String nama = listCursor.getString(listCursor.getColumnIndex(data.k_nama));
            String chiperteks = listCursor.getString(listCursor.getColumnIndex(data.m_chiperteks));
            String waktu = listCursor.getString(listCursor.getColumnIndex(data.kel_waktu));
like image 837
androidDev Avatar asked Nov 30 '22 21:11

androidDev


2 Answers

The Cursor must include a column named _id or this class will not work.

You can maybe try to fake it using your existing ID:

Cursor c = dba.rawQuery(
        " SELECT "
        + kel_id + " AS _id,"
        + kel_id + ","
        + e_chiperteks + ","
        + k_nama + ","
        + kel_waktu +
        " FROM " + tbPesan + " INNER JOIN " + tbPesanKeluar +
        " ON "  + tbPesan + "." + p_idpesan + "=" + tbPesanKeluar + "." + kel_idpesan +
        " INNER JOIN " + tbEnkrip +
        " ON " + tbPesan + "." + p_idenkrip + "=" + tbEnkrip + "." + e_idenkrip +
        " INNER JOIN " + tbKontak + 
        " ON " + tbPesan + "." + p_idkontak + "=" + tbKontak + "." + k_id , null);
like image 90
Yoann Hercouet Avatar answered Dec 03 '22 11:12

Yoann Hercouet


Make key_id as "_id"

public Cursor DataPesanKeluar() {
Cursor c = dba.rawQuery(
        " SELECT "
        + kel_id + " AS _id" + ","
        + e_chiperteks + ","
        + k_nama + ","
        + kel_waktu +
        " FROM " + tbPesan + " INNER JOIN " + tbPesanKeluar +
        " ON "  + tbPesan + "." + p_idpesan + "=" + tbPesanKeluar + "." + kel_idpesan +
        " INNER JOIN " + tbEnkrip +
        " ON " + tbPesan + "." + p_idenkrip + "=" + tbEnkrip + "." + e_idenkrip +
        " INNER JOIN " + tbKontak + 
        " ON " + tbPesan + "." + p_idkontak + "=" + tbKontak + "." + k_id , null);
return c;

}

like image 30
Hoan Nguyen Avatar answered Dec 03 '22 12:12

Hoan Nguyen