1

重複の可能性:
Android アプリケーションで既存のデータベースを使用する方法

私はc#でAndroidアプリケーションを書いており、sqliteを使用してマイデータを保存しています。データベースからデータを取得してテキストビューに表示したいのですが、null を返します。

  protected void GetCursorView(string username, string sValue)
    {
        Android.Database.ICursor icTemp = dt.GetRecordCursor(username, sValue);
        if (icTemp != null)
        {
            icTemp.MoveToFirst();
            name.Text = icTemp.GetString(1);//name is TextView
            post.Text = icTemp.GetString(3);
        }
        else
        {
            tresult.Text = dt.Message;
        }
    }

Textviewでsqliteからのデータを表示するには?

4

0 に答える 0