无法解析符号DatabaseHelper

时间:2018-01-16 21:55:48

标签: java android android-studio android-sqlite sqliteopenhelper

所以,我正在关注教程,并尝试使其与我的SQL数据库一起使用。所以,似乎没有错误,但这个红色的词(Gljive,他们是粗体)。是应该有班级名称还是什么?我把基本的单词(gljive,意思是我的语言中的蘑菇)。我没有写完我的所有专栏,因为我不想写所有专栏,如果这样的话就行了......我只是想要加载数据库以及稍后填充特定微调器中的特定列。程序显示它无法解析符号Gljive。

package com.example.shromid;

import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;

import com.readystatesoftware.sqliteasset.SQLiteAssetHelper;

public class DatabaseHelper extends SQLiteAssetHelper {

//DB info
private static final String DB_NAME = "gljive.db";
private static final int DB_VERSION = 1;

//Table GLJIVE
public static final String TABLE_GLJIVE = "gljive";
public static final String COLUMN_ID = "_id";
public static final String COLUMN_NAZIV = "Naziv";
public static final String COLUMN_KBOJA = "Klobuk_Boja";
public static final String COLUMN_KOBLIK = "Klobuk_Oblik";
public static final String COLUMN_KTEKSTURA = "Klobuk_Tekstura";
public static final String COLUMN_LBOJA = "Listici_Boja";
public static final String COLUMN_SOBLIK = "Strucak_Oblik";
public static final String COLUMN_SDNO = "Strucak_Dno";
public static final String COLUMN_MBOJA = "Meso_Boja";
public static final String COLUMN_MMIRIS = "Meso_Miris";
public static final String COLUMN_STANISTE = "Staniste";
public static final String COLUMN_SGRUPA = "Staniste_Grupa";
public static final String COLUMN_UPOTREBLJIVOST = "Upotrebljivost";

private static final String orderBy = DatabaseHelper.COLUMN_NAZIV + " ASC ";

private Context mContext;
private SQLiteDatabase mDB;

public DatabaseHelper(Context context) {
    super(context, DB_NAME, null, DB_VERSION);
    mContext = context;
    setForcedUpgradeVersion();
}

public **Gljive** getGljiveById(int id) {
    **Gljive** gljive = null;

    SQLiteDatabase db = getReadableDatabase();

    Cursor cursor = db.query(
            DatabaseHelper.TABLE_GLJIVE, null, DatabaseHelper.COLUMN_ID + " = 1 ",
            new String[]{String.valueOf(1)}, null, null, orderBy);
    if (cursor != null) {
        cursor.moveToFirst();
        gljive = cursorToGljive(cursor);
        cursor.close();
    }

    return gljive;
}

public **Gljive** getGljiveByNaziv(String Naziv) {
    **Gljive** gljive = null;

    SQLiteDatabase db = getReadableDatabase();

    Cursor cursor = db.query(
            DatabaseHelper.TABLE_GLJIVE, null, DatabaseHelper.COLUMN_NAZIV + " 2",
            new String[]{name}, null, null, null);
    if (cursor != null) {
        cursor.moveToFirst();
        gljive = cursorToGljive(cursor);
        cursor.close();
    }

    return gljive;
}

public List<**Gljive**> getGljiveByKBoja(String Klobuk_Boja) {
    List<**Gljive**> gljive = new ArrayList<Gljive>();
    SQLiteDatabase db = getReadableDatabase();
    Cursor cursor = db.query(
            DatabaseHelper.TABLE_GLJIVE, null, DatabaseHelper.COLUMN_KBOJA + " 3 ",
            new String[]{COLUMN_KBOJA}, null, null, orderBy);
    if (cursor != null) {
        cursor.moveToFirst();
        while (!cursor.isAfterLast()) {
            Gljive gljive = cursorToGljive(cursor);
            gljive.add(gljive);
            cursor.moveToNext();
        }
        cursor.close();
    }

    return gljive;
}

private **Gljive** cursorToGljive(Cursor cursor){
    **Gljive** gljive= new Gljive();

    return gljive;
}
}

1 个答案:

答案 0 :(得分:0)

公开 Gljive getGljiveById(int id){....}

是说定义一个名为getGljiveById的公共方法,它返回一个 Gljive 对象。

要拥有 Gljive 对象,您需要一个名为Gljive

的类
  

应该有班级名称还是什么?

是的,所以创建一个名为 Gljive.java 的文件,然后输入如下内容: -

public class Gljive {
    private long mId;
    private String mNaziv' // etc for all the properties (columns)

    // Constructor 
    public Gljive(String naziv, ) {
        this.mNaziv = naziv
    }

    // Setters/getters
    public long getId() {
        return this.mId;
    }
    public void setId(long id) {
        this.mId = id;
    }

    public String getNaziv() {
        return this.Naziv;
    }
    .... etc
}

使用上面(缩短的)Gljive类,您可以在其他地方(例如在您的数据库助手中): -

//Create(construct) a Gljive instance
Gljive my_first_gljive = new Gljive("Button"); // Creates an instance using the constructor
my_first_gljive.setId(100); // Sets the mId for this instance to 100
String gljive_name_to_print = my_first_gljive.getNaziv();

您的大部分代码需要核心地容纳/利用Gljive对象,例如cursorToGljive不能: -

private Gljive cursorToGljive(Cursor cursor){
    Gljive gljive= new Gljive();
    return gljive;
}

这将符合(基于上面缩短的Gljive): -

private Gljive cursorToGljive(Cursor cursor){
    Gljive gljive= new Gljive(
        cursor.getString(cursor.getColumnIndex(COLUMN_NAZIV)
    );
    gljive.setId(cursor.getColumnIndex(COLUMN_ID)); //Note(1)
    return gljive;
}

注释

  • (1)你可以有一个构造函数(允许多个构造函数,但允许使用不同的签名),允许传递id。

使用上面的cursorToGljive方法并纠正一些错误,DatabaseHelper中的其他方法可能是(参见注释): -

public Gljive getGljiveById(int id) {
    Gljive gljive = null;

    SQLiteDatabase db = getReadableDatabase();

    Cursor cursor = db.query(
            TABLE_GLJIVE, null, COLUMN_ID + "=?", //<<<< =? 
            new String[]{String.valueOf(id)},     //<<<< uses the passed id
            null, null, orderBy);
    if (cursor.moveToFirst()) {                   //<<<<< cursor will not be null
        gljive = cursorToGljive(cursor);
        cursor.close();
    }

    return gljive;
}

public Gljive getGljiveByNaziv(String Naziv) {
    Gljive gljive = null;

    SQLiteDatabase db = getReadableDatabase();

    Cursor cursor = db.query(
            TABLE_GLJIVE, null, COLUMN_NAZIV + "=?", //<<<< =?
            new String[]{Naziv},                     //<<<< use passed Naziv as argument
            null, null, null);
    if (cursor.moveToFirst()) {                      //<<<< cursor never null         
        gljive = cursorToGljive(cursor);
        cursor.close();
    }

    return gljive;
}

public List<Gljive> getGljiveByKBoja(String Klobuk_Boja) {
    List<Gljive> gljive = new ArrayList<>();
    SQLiteDatabase db = getReadableDatabase();
    Cursor cursor = db.query(
            TABLE_GLJIVE, null, COLUMN_KBOJA + "=?",  //<<<< =?
            new String[]{Klobuk_Boja},                //<<<< use passed value as argument 
            null, null, orderBy);
    while (cursor.moveToNext()) {                     // compact loop removed null check
        gljive.add(cursorToGljive(cursor))            // add Gljive object to List
    }
    cursor.close();
    return gljive;
}

请注意!这是原则上的代码,它尚未经过测试,因此可能存在错误。此外,它是一个缩短版本,基本上只适合纳粹的专栏。应该修改Gljive.java以满足所有成员(属性),同样/应该修改cursorToGljive