1

到目前为止,我有这个:

    Cursor cursor = dbHelper.getAllPatients();
    String[] data = new String[]{DBHelper.KEY_LNAME, 
            DBHelper.KEY_FNAME, DBHelper.KEY_DIAGNOSIS};

    int[] to = new int[] {R.id.fullname, R.id.diagnosis};

    dataAdapter = new SimpleCursorAdapter(this, R.layout.custom_row, cursor, data, to, 0);
    dbHelper.close();

    lv.setAdapter(dataAdapter);
    lv.setTextFilterEnabled(true);

getAllPatients() 方法

  public Cursor getAllPatients()
{
    Cursor localCursor = 
            this.myDataBase.query(DB_TABLE, new String[] { 
                    KEY_ID, KEY_FNAME, KEY_LNAME, KEY_DIAGNOSIS }, null, null, null, null, null);
    if (localCursor != null)
      localCursor.moveToFirst();
    return localCursor;
}

我希望列FNAMELNAME成为一个,但我很困惑如何以及在何处将连接运算符+放在 String 数组中。你有什么想法吗?我很乐意感谢您的帮助。谢谢。

4

2 回答 2

2

查询时执行以下操作

Cursor localCursor = 
        this.myDataBase.query(DB_TABLE, new String[] { 
                KEY_ID, KEY_FNAME +"||"+ KEY_LNAME, KEY_DIAGNOSIS }, null, null, null, null, null);

在使用适配器分配值时,请执行以下操作,

String[] data = new String[]{DBHelper.KEY_LNAME +"||"+ DBHelper.KEY_FNAME, DBHelper.KEY_DIAGNOSIS};

int[] to = new int[] {R.id.fullname, R.id.diagnosis};
于 2013-07-16T14:44:57.327 回答
0

尝试这个

SELECT CONCAT(ColA, ColB) AS ColC FROM Table

或者

String query = "select" +ColA+"+"+ColB +"as CompleteAddress from YourTable";
于 2013-07-08T11:10:32.330 回答