SQLite rawQuery选择标题为实数的列

时间:2015-02-12 02:44:49

标签: android jquery database sqlite android-query

我有一个表,其列有数字:

表名" Valores"

id Nombre 11 18 12.3
01 Juan 10 08 15
02罗莎23 51 61
03佩佩35 18 11

我想知道您在列中选择任何名称的金额。第12.3栏中罗莎的例子是61.我做了以下陈述:

columna = (EditText) findViewById(R.id.eT_columna);
valor = (EditText) findViewById(R.id.eT_valor);
String stColumna = columna.getText().toString();

    public void consulta (View v){

       //Determinación del valor
        Cursor fila_valores = bd_valores.rawQuery(
                "select "+ stColumna + " from Valores where Nombre", null);
        if (fila_valores.moveToFirst()) {
            valor.setText(fila_valores.getString(0));
        }
        bd_valores.close();
    }

运行我得到的应用程序12.3(正确值61)。我的错是什么?谢谢(对不起我的英文)

3 个答案:

答案 0 :(得分:0)

您忘记在查询中输入条件值(即Rosa)。

select "+ stColumna + " from Valores where Nombre = 'Rosa'

答案 1 :(得分:0)

SELECT 12.3

选择数字文字12.3而不是列12.3。要选择列,请引用标识符:

SELECT "12.3"

示例:

sqlite> create table a("12.3");
sqlite> insert into a select 45.6;
sqlite> select 12.3 from a;
12.3
sqlite> select "12.3" from a;
45.6

此外,您的where Nombre本身毫无意义。

答案 2 :(得分:0)

我找到了问题的解决方案:

columna = (EditText) findViewById(R.id.eT_columna);
Nombre = (EditText) findViewById(R.id.eT_Nombre);
valor = (EditText) findViewById(R.id.eT_valor);
String stColumna = columna.getText().toString();
String stNombre = Nombre.getText().toString();

    public void consulta (View v){

       //Determinación del valor
        Cursor fila_valores = bd_valores.rawQuery(
                "select "+ '"' + stColumna +'"'+ " from Valores where Nombre=" + "'"+stNombre+"'", null);
        if (fila_valores.moveToFirst()) {
            valor.setText(fila_valores.getString(0));
        }
        fila_valores.close();
    }

谢谢你的帮助。