sql >> Databáze >  >> RDS >> SQLite

Dotaz SQLite:získat všechny sloupce řádku (android)?

Tak to má být

Cursor cursor = db.rawQuery(selectQuery, null);
    ArrayList<HashMap<String, String>> maplist = new ArrayList<HashMap<String, String>>();
    // looping through all rows and adding to list

    if (cursor.moveToFirst()) {
        do {
            HashMap<String, String> map = new HashMap<String, String>();
            for(int i=0; i<cursor.getColumnCount();i++)
            {
                map.put(cursor.getColumnName(i), cursor.getString(i));
            }

            maplist.add(map);
        } while (cursor.moveToNext());
    }
    db.close();
    // return contact list
    return maplist;

Upravit Uživatel chtěl vědět, jak vyplnit ListView pomocí HashMap

//listplaceholder is your layout
//"StoreName" is your column name for DB
//"item_title" is your elements from XML

ListAdapter adapter = new SimpleAdapter(this, mylist, R.layout.listplaceholder, new String[] { "StoreName",
                "City" }, new int[] { R.id.item_title, R.id.item_subtitle });



  1. SQL Server – transakce se vrátí při chybě?

  2. Pochopení 3 klíčových charakteristik velkých dat

  3. Explicitní spojení vs implicitní spojení?

  4. Jak převést hodnotu data/času na řetězec v SQL Server pomocí CONVERT()