我怎么知道sqlite是否正在我的应用程序上工作?

时间:2018-04-14 00:10:39

标签: android sqlite android-4.4-kitkat

我目前正在使用sqlite进行tic tac toe,允许sqlite使用该人的名字和姓氏保存用户名,但如果用户名已经存在,应用程序将启动tic tac toe游戏,事情是,当我注册用户名时,如果我退出游戏并尝试使用相同的用户名输入,它会再次将我发送到注册表单(再次写下我的姓名和姓氏)。 我的项目是在android studio(KitKat 4.4)中用API 19制作的。我不知道这是否是sqlite避免插入数据的原因。 这是sqlite的代码:

DBHelper.java:

public class DbHelper extends SQLiteOpenHelper {

    private static final String DB_NAME="GatoBD.sqlite";
    private static final int DB_SCHEME_VERSION=1;
    public DbHelper(Context context) { 
        super(context, DB_NAME, null, DB_SCHEME_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(DataBaseManager.CREATE_1_TABLE);
      // db.execSQL(DataBaseManager.CREATE_2_TABLE);

    }

    @Override
    public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {

    }
}

DataBaseManager.java:

public class DataBaseManager {
    public static String TABLE_1_NAME ="Users";
    public static String TABLE_2_NAME="Points";


    public static final String CN_ID = "_id";
    public static final String CN_NAME = "name";
    public static final String CN_1_LASTNAME = "last name";
    public static final String CN_1_USER = "user";
    public static final String CN_2_SCORE = "points";
    public static final String CN_2_TIME = "time";

    public static final String CREATE_1_TABLE = "create table "+TABLE_1_NAME+ "("//Tabla de usuarios
            + CN_ID + " integer primary key autoincrement,"
            +CN_NAME + " text,"
            +CN_1_LASTNAME + "text,"
            +CN_1_USER +" text);";

    public static final String CREATE_2_TABLE = "create table " + TABLE_2_NAME + " ("//Tabla de puntajes
            + CN_ID + " integer primary key autoincrement,"
           +CN_1_USER + " text not null,"
            +CN_2_SCORE +" integer);"
            +CN_2_TIME +" text);";

    private DbHelper helper;
    private SQLiteDatabase db1;

    public DataBaseManager(Context context) {
        helper=new DbHelper(context);
            db1=helper.getWritableDatabase(); 
        }



    public boolean ItsEmpty() 
    {
        String columns[]={CN_ID ,CN_NAME ,CN_1_LASTNAME ,CN_1_USER }; 
        Cursor cursor = db1.query(TABLE_1_NAME, columns, null, null, null, null,null);
        if(cursor.getCount()>0) 
        {

            return false;   // database not empty
        } else {

            return true;  // database empty
        }

    }






public ContentValues generateContentValues(String name, String lastname, String user) //
{
    ContentValues values=new ContentValues();
    valores.put("name",name);
    valores.put("last name",lastname);
    valores.put("user",user);
    return values;
}

public void InsertNewUser(String name, String lastname, String user)
{

    db1.insert("Users",null, generateContentValues(name,lastname,user) );

    db1.close();
}

public boolean SearchUser(String user)
{
    String countQuery = "SELECT  * FROM " + TABLE_1_NAME;

    Cursor c = db1.rawQuery(countQuery, null);
    if (!ItsEmpty())
    {

        c.moveToFirst();
        do {

            if (user.equals(c.getString(c.getColumnIndex("user"))))
            {
                c.close();
                return true;
            }



        }
        while (c.moveToNext());



    }
    c.close();
    return false;
}

1 个答案:

答案 0 :(得分:1)

用户 CREATE TABLE中存在一些错误,这会导致插入被忽略(以及其他潜在问题/崩溃)

首先,您使用的是列名姓氏,如果未将其封闭,则会导致列名称为 last ,并在生成SQL时出现语法错误来自姓氏的逗号不在两者之间(就SQL而言)列名。

我建议修改: -

public static final String CN_1_LASTNAME = "last name";

来: -

public static final String CN_1_LASTNAME = "lastname";

如果您坚持使用该空间,请执行以下操作之一: -

public static final String CN_1_LASTNAME = "`last name`";
public static final String CN_1_LASTNAME = "[last name]";
public static final String CN_1_LASTNAME = "'last name'";
public static final String CN_1_LASTNAME = "\"last name\"";

确保始终使用CN_1_LASTNAME引用列名称。

第二个问题是姓氏列,因为列类型 TEXT 之间没有空格。因此,如果应用了上述修复,则该列将再次命名为lastnameTEXT,从而导致出现问题。

解决此问题的方法是改变: -

+CN_1_LASTNAME + "text,"

: -

+CN_1_LASTNAME + " text," //<<<< ADDED SPACE before text.

一旦您获得了代码,您将需要删除数据库(假设您在数据库中没有重要数据)(删除数据库是重建它的最简单方法)。

您可以通过以下方式执行此操作: - - 删除应用程序的数据或 - 卸载应用程序。 然后重新运行App。

关于知道数据库中的内容,您可能会发现以下内容: - Are there any methods that assist with resolving common SQLite issues?