温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android中数据库的工作方式是什么

发布时间:2021-07-19 15:13:06 阅读:121 作者:Leah 栏目:移动开发
亿速云云数据库,读写分离,安全稳定,弹性扩容,低至0.3元/天!! 点击查看>>

Android中数据库的工作方式是什么,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

下面的代码片段显示了一个标准数据库适配器类的框架。它包括一个SQLiteOpenHelper类的扩展类,用于简化打开、创建和更新Android数据库。

import android.content.Context;  import android.database.*;  import android.database.sqlite.*;  import android.database.sqlite.SQLiteDatabase.CursorFactory;  import android.util.Log;  public class MyDBAdapter   {  private static final String DATABASE_NAME = “myDatabase.db”;  private static final String DATABASE_TABLE = “mainTable”;  private static final int DATABASE_VERSION = 1;  // The index (key) column name for use in where clauses.  public static final String KEY_ID=”_id”;  // 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 helpe  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);  }  // Called when there is a database version mismatch meaning that  // the version of the database on disk needs to be upgraded to  // the current version.  @Override  public void onUpgrade(SQLiteDatabase _db, int _oldVersion, int _newVersion) {  // Log the version upgrade.  Log.w(“TaskDBAdapter”, “Upgrading from version “ +  _oldVersion + “ to “ + _newVersion +  “, which will destroy all old data”);  // Upgrade the existing database to conform to the new version.  // Multiple previous versions can be handled by comparing  // _oldVersion and _newVersion values.  // The simplest case is to drop the old table and create a  // new one.  _db.execSQL(“DROP TABLE IF EXISTS “ + DATABASE_TABLE);  // Create a new one.  onCreate(_db);  }  }  } 

关于Android中数据库的工作方式是什么问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

亿速云「云数据库 MySQL」免部署即开即用,比自行安装部署数据库高出1倍以上的性能,双节点冗余防止单节点故障,数据自动定期备份随时恢复。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI

开发者交流群×