感谢 Midhun MP ,这两个问题已经解决了!我有一个新问题:我有2个字符串来接管数据,一个来自我输入的数据,一个来自数据库,我使用fonction equals()来进行比较,但他们不会匹配,即使它们对我来说是相同的数字......我在下面更新:
public void buttonOpen(View view) {
EditText txtpass1 = (EditText) findViewById(R.id.password); //on recuperer le mot de passeword
String pass1str = txtpass1.getText().toString();
Toast.makeText(ParCode.this, pass1str, Toast.LENGTH_LONG).show();//test
Cursor allCode = new DataCode(this).getCode();//get the data from database using Cursor
allCode.moveToFirst();
while (!allCode.isAfterLast())
{
String code = allCode.getString(0);
Log.i(code, "Code");
allCode.moveToNext();
}
String pass2str = allCode.toString();//le data dans le bibliotheque
if (pass1str.equals(pass2str)) {...}
是数据类型的问题吗?
<小时/> 大家好。我是一个新手,我的android-studio程序让我发疯 它类似于登录程序,我有2个活动:第一个是供用户输入密码,我认为需要获取用户输入的内容并与之比较数据库; 第二个是供用户更改密码,我认为这意味着更新数据库中的数据
public class DataCode extends SQLiteOpenHelper {
public static final String DATABASE_NAME = "Code4.dp";
public static final String TABLE_NAME = "Code_table";
public static final String COL_1 = "CODE";//a une seule ligne
public DataCode(Context context) {
super(context, DATABASE_NAME, null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("create table " + TABLE_NAME + " (CODE TEXT )");//create the table
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS "+TABLE_NAME);
onCreate(db);
}
//insert data
public boolean insertData(String CODE) {
SQLiteDatabase db = this.getWritableDatabase();//insert to database
ContentValues contentValues = new ContentValues();
contentValues.put(COL_1, CODE);
long result = db.insert(TABLE_NAME, null, contentValues);
if (result == -1)
return false;
else
return true;
}
//show data
public Cursor getCode(){
SQLiteDatabase db = this.getReadableDatabase();
Cursor res = db.rawQuery("select * from " + TABLE_NAME, null);//store table in cursor
return res;
}
//modifier code
public boolean updateCode(String CODE) {
SQLiteDatabase db = this.getWritableDatabase();//create database
ContentValues contentValues = new ContentValues();
contentValues.put(COL_1, CODE);
db.update(TABLE_NAME, contentValues, "code = ?", new String[]{ CODE });
return true;
}
}
和我的第二个活动代码(无法更新数据):
public class ModifierC extends AppCompatActivity {
DataCode myDbC;//creat the database
EditText editCode;
Button Modifier;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_modifier_c);
myDbC = new DataCode(this);//my database for code
editCode = (EditText)findViewById(R.id.password2);
Modifier = (Button)findViewById(R.id.buttonMP);
buttonMP();//modifier le code
}
public void buttonMP(){//button to change the password
Modifier.setOnClickListener(
new View.OnClickListener() {
public void onClick(View v) {
EditText txtpass2 = (EditText) findViewById(R.id.password2);
String pass2str = txtpass2.getText().toString();
Cursor res = myDbC.getCode();
if (res.getCount() == 0) {//if there is no data in the database, use the insert method
boolean isInserted = myDbC.insertData(editCode.getText().toString());
if (isInserted == true)
Toast.makeText(ModifierC.this, "Code enregistré", Toast.LENGTH_LONG).show();
else
Toast.makeText(ModifierC.this, "Pas encore de code", Toast.LENGTH_LONG).show();
}
else {//if there is already a code, use the update method
boolean isUpdated = myDbC.updateCode(editCode.getText().toString());//recuperer le code de password2
if (isUpdated == true)
Toast.makeText(ModifierC.this, "Code a changé", Toast.LENGTH_LONG).show();
else
Toast.makeText(ModifierC.this, "Error...", Toast.LENGTH_LONG).show();
}
}
}
}
);
}
}
对于第一个活动,我使用Cursor传递数据
public class ParCode extends AppCompatActivity {
DataCode myC;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_par_code);
}
public void buttonOpen(View view) {
EditText txtpass1 = (EditText) findViewById(R.id.password); //get what user has entered
String pass1str = txtpass1.getText().toString();
Cursor coderes = myC.getCode();// search code in the database
String pass2str = coderes.getString(0);
但它不会工作,我想我可能会错过一些东西。
对不起,这可能是一个太长而且非常愚蠢的问题。但是我花了一个多星期的时间,所以我想我应该寻求帮助。这是我第一次构建Android应用程序,而我所有的问题都是因为缺乏基本知识。但我真的要为我的测试做准备,现在没有时间坚持这个T T ...所以请给我一些建议!
非常感谢
06-03 06:22:58.224 27801-27801/com.example.android.sacconnecte I/4444: Code
06-03 06:22:58.327 27801-27839/com.example.android.sacconnecte W/EGL_emulation: eglSurfaceAttrib not implemented
06-03 06:22:58.327 27801-27839/com.example.android.sacconnecte W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xad79f0a0, error=EGL_SUCCESS
06-03 06:23:08.396 27801-27839/com.example.android.sacconnecte E/Surface: getSlotFromBufferLocked: unknown buffer: 0xab81b280
第一行是从数据库获取的代码。有用!只是某种程度上它不符合我输入的内容。哦啦啦....
答案 0 :(得分:1)
问题正在发生,原因如下:
db.update(TABLE_NAME, contentValues, "code = ?", new String[]{ CODE });
假设您的数据库包含一个值&#34; Elsa&#34;,现在您正在尝试将其更新为&#34; Hello&#34;,sql查询中的上述代码类似于:
UPDATE Code_table SET CODE = 'Hello' WHERE code = 'Hello'
上面的where子句将为false,并且行不会被更新。
您需要使用:
db.update(TABLE_NAME, contentValues, null, null);
第三个和第四个参数代表WhereClause
和WhereArgs
。在您的情况下,您不需要指定(因为您没有定义任何唯一或主要关键字段)。
现在查询将如下所示:
UPDATE Code_table SET CODE = 'Hello'
要使用cursor获取结果,可以使用以下代码:
Cursor allCode = new DataCode().getCode();
allCode.moveToFirst();
while (!allCode.isAfterLast())
{
String code = allCode.getString(0);
Log.i(code, "Code");
allCode.moveToNext();
}