我创建了一个SpinnerActivity,如下所示:


  http://img4.fotos-hochladen.net/uploads/bildschirmfotovse8j4po1t.png


现在,例如,如果我选择“ Landschaft”(英语:landscape),我想在DatabaseHandler.java中搜索“ Landschaft”(风景)类别中的位置

因此,我在DatabaseHandler.java中编写了以下方法:

用这种方法,我刚刚写了Kategorie = Landscape。

但是我想将我微调器中选定的SpinnerArray(Landschaft,Brücken...等)插入到我的DatabaseHandler中,而不是“ Landschaft”中,我该怎么做?

public List<Position> getAllPositionsWithCategory() {
        List<Position> positionList = new ArrayList<Position>();

        String selectQuery = "SELECT * FROM " + TABLE_POSITIONS
                + " WHERE Kategorie = 'Landschaft'";

        SQLiteDatabase db = this.getWritableDatabase();

        Cursor cursor = db.rawQuery(selectQuery, null);

        // looping through all rows and adding to list

        if (cursor.moveToFirst()) {

            do {

                Position position = new Position();

                position.setID(Integer.parseInt(cursor.getString(0)));

                position.setName(cursor.getString(1));

                position.setKategorie(cursor.getString(2));

                position.setLaenge(cursor.getFloat(3));

                position.setBreite(cursor.getFloat(4));

                // Adding position to list

                positionList.add(position);

            } while (cursor.moveToNext());

        }
}

最佳答案

只需在查询中将固定的String替换为?,然后将要插入的值传递到db.rawQuery()的第二个参数中即可。

以下内容可能适合您的情况:

String selectQuery = "SELECT * FROM " + TABLE_POSITIONS
            + " WHERE Kategorie = ?";
// ...
Cursor cursor = db.rawQuery(selectQuery, new String[] { "Landschaft" });


现在,您可以将String "Landschaft"替换为您选择的变量。

另请参阅:http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html#rawQuery(java.lang.String,%20java.lang.String[])

关于java - 如何实现String变量而不是“Landschaft”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28917988/

10-11 10:35