Sqlite jak uzyskać elementy ciągu za pomocą kursora

<code>public Cursor getImages(long rowId) throws SQLException
    {
        Cursor mCursor =
                db.rawQuery("select * from Pictures WHERE id=" + rowId + ";", null);
        if (mCursor != null) {
            mCursor.moveToFirst();
        }
        return mCursor;


    }
</code>

Kolumny tabeli „id, pic, comment”

Chcę pobrać wartości pic i comment do tablicy łańcuchów.

Mój kod to:

<code>int i=0;
        Cursor c1 = db.getImages(memberId);     
        c1.moveToFirst();
        while(c1.isLast()){
            pictures[i]=c1.getString(1);
            comments[i]=c1.getString(2);
            i++;
        }
</code>

to nie działa.

questionAnswers(5)

yourAnswerToTheQuestion