这是我在 DBMethods 类中的方法:
public void getResult(EditText keyWord2){
EditText keyWord = null;
String SQL ="localSearch.php?query="+keyWord.getText();
mDb.rawQuery(SQL, null);
}
这是我在 webServices 类中打开数据库和所有内容的方法。
public void startSearch(View v){
keyWord = (EditText)findViewById(R.id.searchField);
String data = null;
DBMethods mDbHelper = new DBMethods(this);
mDbHelper.createDatabase();
mDbHelper.open();
mDbHelper.getResult(keyWord);
mDbHelper.close();
}
当我尝试通过在搜索栏中输入一些关键字从数据库中获取数据时,会发生强制关闭错误。