- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的数据库助手:
public class PersonDatabaseHelper {
private static final String TAG = PersonDatabaseHelper.class.getSimpleName();
// database configuration
// if you want the onUpgrade to run then change the database_version
private static final int DATABASE_VERSION = 7;
private static final String DATABASE_NAME = "database.db";
// table configuration
static final String TABLE_NAME = "person_table"; // Table name
static final String PERSON_TABLE_COLUMN_ID = "_id"; // a column named "_id" is required for cursor
static final String PERSON_TABLE_COLUMN_NAME = "person_name";
static final String PERSON_TABLE_COLUMN_SURNAME = "person_surname";
static final String PERSON_TABLE_COLUMN_ENTERDATE = "person_enterdate";
static final String PERSON_TABLE_COLUMN_ENTERTIME = "person_entertime";
static final String PERSON_TABLE_COLUMN_EXITDATE = "person_exitdate";
static final String PERSON_TABLE_COLUMN_EXITTIME = "person_exittime";
private DatabaseOpenHelper openHelper;
private SQLiteDatabase database;
// this is a wrapper class. that means, from outside world, anyone will communicate with PersonDatabaseHelper,
// but under the hood actually DatabaseOpenHelper class will perform database CRUD operations
public PersonDatabaseHelper(Context aContext) {
openHelper = new DatabaseOpenHelper(aContext);
database = openHelper.getWritableDatabase();
}
public void insertData (String aPersonName, String aPersonSurName, String aPersonEnterDate,String aPersonEnterTime, String aPersonExitDate,String aPersonExitTime) {
// we are using ContentValues to avoid sql format errors
ContentValues contentValues = new ContentValues();
contentValues.put(PERSON_TABLE_COLUMN_NAME, aPersonName);
contentValues.put(PERSON_TABLE_COLUMN_SURNAME, aPersonSurName);
contentValues.put(PERSON_TABLE_COLUMN_ENTERDATE, aPersonEnterDate);
contentValues.put(PERSON_TABLE_COLUMN_ENTERTIME, aPersonEnterTime);
contentValues.put(PERSON_TABLE_COLUMN_EXITDATE, aPersonExitDate);
contentValues.put(PERSON_TABLE_COLUMN_EXITTIME, aPersonExitTime);
database.insert(TABLE_NAME, null, contentValues);
}
public void update_byID(int id, String name, String surname, String enterDate, String enterTime,String exitDate,String exitTime){
ContentValues values = new ContentValues();
values.put(PERSON_TABLE_COLUMN_NAME, name);
values.put(PERSON_TABLE_COLUMN_SURNAME, surname);
values.put(PERSON_TABLE_COLUMN_ENTERDATE, enterDate);
values.put(PERSON_TABLE_COLUMN_ENTERTIME, enterTime);
values.put(PERSON_TABLE_COLUMN_EXITDATE, exitDate);
values.put(PERSON_TABLE_COLUMN_EXITTIME, exitTime);
database.update(TABLE_NAME, values, PERSON_TABLE_COLUMN_ID+"="+id, null);
}
public Cursor getAllData () {
String buildSQL = "SELECT * FROM " + TABLE_NAME;
Log.d(TAG, "getAllData SQL: " + buildSQL);
return database.rawQuery(buildSQL, null);
}
// this DatabaseOpenHelper class will actually be used to perform database related operation
private class DatabaseOpenHelper extends SQLiteOpenHelper {
public DatabaseOpenHelper(Context aContext) {
super(aContext, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
// Create your tables here
String buildSQL = "CREATE TABLE " + TABLE_NAME + "( " + PERSON_TABLE_COLUMN_ID + " INTEGER PRIMARY KEY, " +
PERSON_TABLE_COLUMN_NAME + " TEXT, " + PERSON_TABLE_COLUMN_SURNAME + " TEXT, " + PERSON_TABLE_COLUMN_ENTERDATE + " TEXT," + PERSON_TABLE_COLUMN_ENTERTIME + " TEXT," + PERSON_TABLE_COLUMN_EXITDATE + " TEXT," + PERSON_TABLE_COLUMN_EXITTIME + " TEXT )";
Log.d(TAG, "onCreate SQL: " + buildSQL);
sqLiteDatabase.execSQL(buildSQL);
}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int oldVersion, int newVersion) {
// Database schema upgrade code goes here
String buildSQL = "DROP TABLE IF EXISTS " + TABLE_NAME;
Log.d(TAG, "onUpgrade SQL: " + buildSQL);
sqLiteDatabase.execSQL(buildSQL); // drop previous table
onCreate(sqLiteDatabase); // create the table from the beginning
}
}
我的列表类:
public class List extends ActionBarActivity{
private CustomCursorAdapter customAdapter;
private PersonDatabaseHelper databaseHelper;
private static final int ENTER_DATA_REQUEST_CODE = 1;
private ListView listView;
private static final String TAG = List.class.getSimpleName();
/**
* Called when the activity is first created.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.listview);
databaseHelper = new PersonDatabaseHelper(this);
listView = (ListView) findViewById(R.id.list_data);
listView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.d(TAG, "clicked on item: " + position);
Intent intent = new Intent(List.this, Edit.class);
Person p = new Person();
Cursor cursor = (Cursor) customAdapter.getItem(position);
p.name = cursor.getString(cursor.getColumnIndex("person_name"));
p.surname = cursor.getString(cursor.getColumnIndex("person_surname"));
p.enterDate = cursor.getString(cursor.getColumnIndex("person_enterdate"));
p.enterTime = cursor.getString(cursor.getColumnIndex("person_entertime"));
p.exitDate = cursor.getString(cursor.getColumnIndex("person_exitdate"));
p.exitTime = cursor.getString(cursor.getColumnIndex("person_exittime"));
intent.putExtra("update_id", position);
intent.putExtra("name",p.name);
intent.putExtra("surname",p.surname );
intent.putExtra("enterdate",p.enterDate );
intent.putExtra("entertime",p.enterTime);
intent.putExtra("exitdate", p.exitDate);
intent.putExtra("exittime", p.exitTime);
startActivity(intent);
}
});
listView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
return false;
// TODO Auto-generated method stub
}
});
// Database query can be a time consuming task ..
// so its safe to call database query in another thread
// Handler, will handle this stuff for you <img src="http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1129645325g" alt=":)" class="wp-smiley">
new Handler().post(new Runnable() {
@Override
public void run() {
customAdapter = new CustomCursorAdapter(List.this, databaseHelper.getAllData());
listView.setAdapter(customAdapter);
}
});
}
public void onClickEnterData(View btnAdd) {
startActivityForResult(new Intent(this, Permission.class), ENTER_DATA_REQUEST_CODE);
}
public void onClickLogOut(View btnLogOut){
Intent intent = new Intent(List.this,
MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
databaseHelper.insertData(data.getExtras().getString("tag_person_name"), data.getExtras().getString("tag_person_surname"),data.getExtras().getString("tag_person_enterdate"),data.getExtras().getString("tag_person_entertime"),data.getExtras().getString("tag_person_exitdate"),data.getExtras().getString("tag_person_exittime"));
customAdapter.changeCursor(databaseHelper.getAllData());
}
if(resultCode == RESULT_FIRST_USER){
databaseHelper.update_byID(data.getExtras().getInt("update_id"),data.getExtras().getString("update_person_name"), data.getExtras().getString("update_person_surname"),data.getExtras().getString("update_person_enterdate"),data.getExtras().getString("update_person_entertime"),data.getExtras().getString("update_person_exitdate"),data.getExtras().getString("update_person_exittime"));
customAdapter.changeCursor(databaseHelper.getAllData());
}
}
我的 Edit 类,其中处理更新按钮是由 onClickSave 定义的:
public class Edit extends ActionBarActivity {
EditText name;
EditText surName;
EditText date;
EditText time;
EditText eDate;
EditText eTime;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_edit);
Intent intent = getIntent();
String data_name = intent.getStringExtra("name");
String data_surname = intent.getStringExtra("surname");
String data_enterdate= intent.getStringExtra("enterdate");
String data_entertime = intent.getStringExtra("entertime");
String data_exitdate = intent.getStringExtra("exitdate");
String data_exittime = intent.getStringExtra("exittime"); //typo here
name = (EditText) findViewById(R.id.username); //corrected
surName = (EditText) findViewById(R.id.usersurname); //corrected
date = (EditText) findViewById(R.id.date2);
time = (EditText) findViewById(R.id.time2);
eDate = (EditText) findViewById(R.id.date3);
eTime = (EditText) findViewById(R.id.time3);
name.setText(data_name);
surName.setText(data_surname);
date.setText(data_enterdate);
time.setText(data_entertime);
eDate.setText(data_exitdate);
eTime.setText(data_exittime);
}
public void onCancel(View btnCancel){
finish();
}
public void onClickSave(View btnSave){
String personName = name.getText().toString();
String personSurName = surName.getText().toString();
String personEnterDate = date.getText().toString();
String personEnterTime = time.getText().toString();
String personExitDate = eDate.getText().toString();
String personExitTime = eTime.getText().toString();
if ( personName.length() != 0 && personSurName.length() != 0&& personEnterDate.length() != 0&& personEnterTime.length() != 0&& personExitDate.length() != 0&& personExitTime.length() != 0 ) {
Intent newIntent = getIntent();
newIntent.putExtra("update_person_name", personName);
newIntent.putExtra("update_person_surname", personSurName);
newIntent.putExtra("update_person_enterdate", personEnterDate);
newIntent.putExtra("update_person_entertime", personEnterTime);
newIntent.putExtra("update_person_exitdate", personExitDate);
newIntent.putExtra("updateperson_exittime", personExitTime);
this.setResult(RESULT_FIRST_USER, newIntent);
finish();
}else {
AlertDialog alertDialog = new AlertDialog.Builder(Edit.this).create();
alertDialog.setTitle("Alert");
alertDialog.setMessage("Fill all columns");
alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.show();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.edit, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
所以问题是我试图通过调用编辑信息的编辑类来更新我在列表中选择的项目,然后通过单击单击保存它更新数据库,我已经编写了所有方法,但我不明白有什么问题,因为它不更新并且什么都不做。即使 logcat 也没有显示任何错误迹象。 :( 请有人帮助我:(
现在我尝试做的是将字符串发送到代码为 RESULT_FIRST_USER 的列表 Activity ,并在 protected void onActivityResult(int requestCode, int resultCode, Intent data) 上的列表 Activity 中,从数据库调用更新方法。
也是我的 Person 类:
public class Person {
int id;
String name;
String surname;
String enterDate;
String enterTime;
String exitDate;
String exitTime;
}
最佳答案
在您的 List
Activity 中,当用户单击列表项并且您将项目数据发送到 Edit
Activity (而不是 startActivity()
,您必须调用startActivityForResult() 。然后,当您存储编辑的数据并在 Edit
Activity 的 onClickSave()
中调用 setResult()
时,数据将传递到List
Activity 的 onActivityResult()
方法..
关于java - Android 数据库更新不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31418091/
我的问题是如何在 python 中创建一个简单的数据库。我的例子是: User = { 'Name' : {'Firstname', 'Lastname'}, 'Address' : {'Street
我需要创建一个与远程数据库链接的应用程序! mysql 是最好的解决方案吗? Sqlite 是唯一的本地解决方案吗? 我使用下面的方法,我想知道它是否是最好的方法! NSString *evento
给定两台 MySQL 服务器,一台本地,一台远程。两者都有一个包含表 bohica 的数据库 foobar。本地服务器定义了用户 'myadmin'@'%' 和 'myadmin'@'localhos
我有以下灵活的搜索查询 Select {vt:code},{vt:productcode},{vw:code},{vw:productcode} from {abcd AS vt JOIN wxyz
好吧,我的电脑开始运行有点缓慢,所以我重置了 Windows,保留了我的文件。因为我的大脑还没有打开,所以我忘记事先备份我的 MySQL 数据库。我仍然拥有所有原始文件,因此我实际上仍然拥有数据库,但
如何将我的 Access 数据库 (.accdb) 转换为 SQLite 数据库 (.sqlite)? 请,任何帮助将不胜感激。 最佳答案 1)如果要转换 db 的结构,则应使用任何 DB 建模工具:
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
系统检查发现了一些问题: 警告:?:(mysql.W002)未为数据库连接“默认”设置 MySQL 严格模式 提示:MySQL 的严格模式通过将警告升级为错误来修复 MySQL 中的许多数据完整性问题
我想在相同的 phonegap 应用程序中使用 android 数据库。 更多说明: 我创建了 phonegap 应用程序,但 phonegap 应用程序不支持服务,所以我们已经在 java 中为 a
Time Tracker function clock() { var mytime = new Date(); var seconds
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
我有一个可以收集和显示各种测量值的产品(不会详细介绍)。正如人们所期望的那样,显示部分是一个数据库+建立在其之上的网站(使用 Symfony)。 但是,我们可能还会创建一个 API 来向第三方公开数据
我们将 SQL Server 从 Azure VM 迁移到 Azure SQL 数据库。 Azure VM 为 DS2_V2、2 核、7GB RAM、最大 6400 IOPS Azure SQL 数据
我正在开发一个使用 MongoDB 数据库的程序,但我想问在通过 Java 执行 SQL 时是否可以使用内部数据库进行测试,例如 H2? 最佳答案 你可以尝试使用Testcontainers Test
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 已关闭 9 年前。 此问题似乎与 a specific programming problem, a sof
我正在尝试使用 MSI 身份验证(无需用户名和密码)从 Azure 机器学习服务连接 Azure SQL 数据库。 我正在尝试在 Azure 机器学习服务上建立机器学习模型,目的是我需要数据,这就是我
我在我的 MySQL 数据库中使用这个查询来查找 my_column 不为空的所有行: SELECT * FROM my_table WHERE my_column != ""; 不幸的是,许多行在
我有那个基地:http://sqlfiddle.com/#!2/e5a24/2这是 WordPress 默认模式的简写。我已经删除了该示例不需要的字段。 如您所见,我的结果是“类别 1”的两倍。我喜欢
我有一张这样的 table : mysql> select * from users; +--------+----------+------------+-----------+ | userid
我有表: CREATE TABLE IF NOT EXISTS `category` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL
我是一名优秀的程序员,十分优秀!