1

ここに画像の説明を入力ねえ、データベースに値を挿入し、4 つのメソッドを使用してレコードを取得しようとしているアプリを構築しようとしています。方法: movetoFirst(), moveToLast(), moveToNext(), moveToPrevious(). 方法 1 と 2 は正しく実行されています。しかし、私は次と前の方法の問題に直面しています。以下は、上記のクエリに添付するコードです。

宣言。

package com.Rohit.taskforsqllite;

import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {
EditText e1, e2, e3;
Cursor c;
SQLiteDatabase db;
int count;
TextView text;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    e1 = (EditText) findViewById(R.id.editText1);
    e2 = (EditText) findViewById(R.id.editText2);
    e3 = (EditText) findViewById(R.id.editText3);
    text = (TextView) findViewById(R.id.textviewcount);

    db = openOrCreateDatabase("Listname", MODE_PRIVATE, null);

    db.execSQL("create table if not exists list1(name varchar,location varchar,      phone number)");
    // Insert values into table
    db.execSQL("insert into list1 values('Rohit','London',12)");
    db.execSQL("insert into list1 values('Raj','Hyd',23)");
    db.execSQL("insert into list1 values('PRak','Canada',34)");
    db.execSQL("insert into list1 values('Sanj','Mad',45)");
    db.execSQL("insert into list1 values('Anna','Polland',56)");

    c = db.rawQuery("select * from list1", null);

    count = c.getCount();`import android.app.Activity;

方法 1;

Button b1 = (Button) findViewById(R.id.startbutton);

    b1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

            c.moveToFirst();

            String name = c.getString(c.getColumnIndex("name"));
            String location = c.getString((c.getColumnIndex("location")));
            String phone = c.getString((c.getColumnIndex("phone")));

            e1.setText(name);
            e2.setText(location);
            e3.setText(phone);
            Log.d("Record from db", name + "," + location + "," + phone);

        }
    });

方法 2:

Button b2 = (Button) findViewById(R.id.finishbuton);
    b2.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            // c = db.rawQuery("select * from list1", null);
            c.moveToLast();

            String name = c.getString(0);
            String location = c.getString(1);
            String phone = c.getString(2);

            e1.setText(name);
            e2.setText(location);
            e3.setText(phone);
            Log.d("Record from db", name + "," + location + "," + phone);

        }
    });

方法 3. これは、while ループを使用して実行しようとすると、問題に直面する場所です。ループの最後まで実行されます。しかし、私はそれをしたくありません。前のボタンを押したときに一度に1つのレコードを表示したいのです。

Button b4 = (Button) findViewById(R.id.previousbutton);

    b4.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            if (c.moveToFirstt()) {
                do {
                    String name = c.getString(c.getColumnIndex("name"));
                    String location = c.getString(c
                            .getColumnIndex("location"));
                    String phone = c.getString(c.getColumnIndex("phone"));
                    e1.setText(name);
                    e2.setText(location);
                    e3.setText(phone);
                    Log.d("Record from db", name + "," + location + ","
                            + phone);

                } while (c.moveToNext());
            }

        }
    });
4

2 に答える 2

1

moveToLast() を使用する場合は、前の行に移動して c.moveToPrevious を使用する必要があります。c.moveToNext() は使用しません。

于 2013-11-11T08:13:11.677 に答える