强烈建议,在自己Android数据库接收或发出一个系统action的时候,要名副其实。比如你响应一个view动作,做的确实edit的勾当,你发送一个pick消息,其实你想让别人做edit的事,这样都会造成混乱。

为乐亭等地区用户提供了全套网页设计制作服务,及乐亭网站建设行业解决方案。主营业务为网站制作、成都网站设计、乐亭网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
一个好的习惯是创建一个辅助类来简化你的Android数据库交互。考虑创建一个数据库适配器,来添加一个与数据库交互的包装层。它应该提供直观的、强类型的方法,如添加、删除和更新项目。数据库适配器还应该处理查询和对创建、打开和关闭数据库的包装。
它还常用静态的Android数据库常量来定义表的名字、列的名字和列的索引。下面的代码片段显示了一个标准数据库适配器类的框架。它包括一个SQLiteOpenHelper类的扩展类,用于简化打开、创建和更新数据库。
- import android.content.Context;
 - import android.database.*;
 - import android.database.sqlite.*;
 - import android.database.sqlite.SQLiteDatabase.CursorFactory;
 - import android.util.Log;
 - public class MyDBAdapter
 - { // The name and column index of each column in your database.
 - public static final String KEY_NAME=”name”;
 - public static final int NAME_COLUMN = 1;
 - // TODO: Create public field for each column in your table.
 - // SQL Statement to create a new database.
 - private static final String DATABASE_CREATE = “create table “ +
 - DATABASE_TABLE + “ (“ + KEY_ID + “ integer primary key autoincrement, “ +
 - KEY_NAME + “ text not null);”;
 - // Variable to hold the database instance
 - private SQLiteDatabase db;
 - // Context of the application using the database.
 - private final Context context;
 - // Database open/upgrade helper
 - private myDbHelper dbHelper;
 - public MyDBAdapter(Context _context) {
 - context = _context;
 - dbHelper = new myDbHelper(context, DATABASE_NAME, null, DATABASE_VERSION);
 - }
 - public MyDBAdapter open() throws SQLException {
 - db = dbHelper.getWritableDatabase();
 - return this;
 - }
 - public void close() {
 - db.close();
 - }
 - public long insertEntry(MyObject _myObject) {
 - ContentValues contentValues = new ContentValues();
 - // TODO fill in ContentValues to represent the new row
 - return db.insert(DATABASE_TABLE, null, contentValues);
 - }
 - public boolean removeEntry(long _rowIndex) {
 - return db.delete(DATABASE_TABLE, KEY_ID + “=” + _rowIndex, null) > 0;
 - }
 - public Cursor getAllEntries () {
 - return db.query(DATABASE_TABLE, new String[] {KEY_ID, KEY_NAME},
 - null, null, null, null, null);
 - }
 - public MyObject getEntry(long _rowIndex) {
 - MyObject objectInstance = new MyObject();
 - // TODO Return a cursor to a row from the database and
 - // use the values to populate an instance of MyObject
 - return objectInstance;
 - }
 - public int updateEntry(long _rowIndex, MyObject _myObject) {
 - String where = KEY_ID + “=” + _rowIndex;
 - ContentValues contentValues = new ContentValues();
 - // TODO fill in the ContentValue based on the new object
 - return db.update(DATABASE_TABLE, contentValues, where, null);
 - }
 - private static class myDbHelper extends SQLiteOpenHelper
 - {
 - public myDbHelper(Context context, String name, CursorFactory factory, int version) {
 - super(context, name, factory, version);
 - }
 - // Called when no database exists in
 - // disk and the helper class needs
 - // to create a new one.
 - @Override
 - public void onCreate(SQLiteDatabase _db) {
 - _db.execSQL(DATABASE_CREATE);
 - }
 
【编辑推荐】
                网站标题:如何进行Android数据库操作
                
                URL地址:http://www.csdahua.cn/qtweb/news28/230628.html
            
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网