|
|
|
Android ดึงข้อมูล Database ทั้งหมดจากบรรทัดล่างสุดจนถึงบนสุดมาแสดง |
|
|
|
|
|
|
|
Code (Java)
List<String> arrList = new ArrayList<String>();
arrList.add("Mercury");
arrList.add("Venus");
arrList.add("Earth");
arrList.add("Mars");
ArrayAdapter<String> arrAd = new ArrayAdapter<String>(MainActivity.this,
android.R.layout.simple_spinner_item,
arrList);
ListView.setAdapter(arrAd);
Go to : Android สอบถามเริ่องการดึงข้อมูล database มาแสดงแบบ listview
|
|
|
|
|
Date :
2012-07-08 07:24:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (Java)
// Select All Data
public String[][] SelectAllData() {
// TODO Auto-generated method stub
try {
String arrData[][] = null;
SQLiteDatabase db;
db = this.getReadableDatabase(); // Read Data
String strSQL = "SELECT * FROM " + TABLE_MEMBER;
Cursor cursor = db.rawQuery(strSQL, null);
if(cursor != null)
{
if (cursor.moveToFirst()) {
arrData = new String[cursor.getCount()][cursor.getColumnCount()];
/***
* [x][0] = MemberID
* [x][1] = Name
* [x][2] = Tel
*/
int i= 0;
do {
arrData[i][0] = cursor.getString(0);
arrData[i][1] = cursor.getString(1);
arrData[i][2] = cursor.getString(2);
i++;
} while (cursor.moveToNext());
}
}
cursor.close();
return arrData;
} catch (Exception e) {
return null;
}
}
Go to : Android กับ SQLite Database การเขียนแอนดรอยด์เพื่อติดต่อกับฐานข้อมูลของ SQLite
|
|
|
|
|
Date :
2012-07-21 12:35:50 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|