sql >> データベース >  >> RDS >> SQLite

sqliteから検索されたデータを返します

    クエリ内のitem 文字列なので、変更

    String strquery="select * from Articles where AS_name= "+item;
    

    String strquery="select * from Articles where AS_name='" + item + "'";
    

    またはこれ

    Cursor cur=null;
    cur = db.query("Articles", null, "AS_name" + "=?",
                new String[] { item }, null, null, null, null);
    

    代わりに

    Cursor cur=null;
    String strquery="select * from Articles where AS_name= "+item;
    cur=db.rawQuery(strquery,null); 
    

    そして変更

    strvalue=cur.getString(0);
    

    strvalue=cur.getString(cur.getColumnIndex("Desc_art"));
    


    1. 16進数をvarchar(datetime)にキャストする方法は?

    2. PostgreSQL配列をPHP配列に変換します

    3. R12.2のデータモデルの論理ビュー

    4. SQLiteの日付と時刻