溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中數(shù)據(jù)庫的工作方式是什么

發(fā)布時(shí)間:2021-07-19 15:13:06 來源:億速云 閱讀:102 作者:Leah 欄目:移動開發(fā)

Android中數(shù)據(jù)庫的工作方式是什么,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

下面的代碼片段顯示了一個(gè)標(biāo)準(zhǔn)數(shù)據(jù)庫適配器類的框架。它包括一個(gè)SQLiteOpenHelper類的擴(kuò)展類,用于簡化打開、創(chuàng)建和更新Android數(shù)據(jù)庫。

  1. import android.content.Context;  

  2. import android.database.*;  

  3. import android.database.sqlite.*;  

  4. import android.database.sqlite.SQLiteDatabase.CursorFactory;  

  5. import android.util.Log;  

  6. public class MyDBAdapter   

  7. {  

  8. private static final String DATABASE_NAME = “myDatabase.db”;  

  9. private static final String DATABASE_TABLE = “mainTable”;  

  10. private static final int DATABASE_VERSION = 1;  

  11. // The index (key) column name for use in where clauses.  

  12. public static final String KEY_ID=”_id”;  

  13. // The name and column index of each column in your database.  

  14. public static final String KEY_NAME=”name”;  

  15. public static final int NAME_COLUMN = 1;  

  16. // TODO: Create public field for each column in your table.  

  17. // SQL Statement to create a new database.  

  18. private static final String DATABASE_CREATE = “create table “ +  

  19. DATABASE_TABLE + “ (“ + KEY_ID + “ integer primary key autoincrement, “ +  

  20. KEY_NAME + “ text not null);”;  

  21. // Variable to hold the database instance  

  22. private SQLiteDatabase db;  

  23. // Context of the application using the database.  

  24. private final Context context;  

  25. // Database open/upgrade helpe  

  26. private myDbHelper dbHelper;  

  27. public MyDBAdapter(Context _context) {  

  28. context = _context;  

  29. dbHelper = new myDbHelper(context, DATABASE_NAME, null, DATABASE_VERSION);  

  30. }  

  31. public MyDBAdapter open() throws SQLException {  

  32. db = dbHelper.getWritableDatabase();  

  33. return this;  

  34. }  

  35. public void close() {  

  36. db.close();  

  37. }  

  38. public long insertEntry(MyObject _myObject) {  

  39. ContentValues contentValues = new ContentValues();  

  40. // TODO fill in ContentValues to represent the new row  

  41. return db.insert(DATABASE_TABLE, null, contentValues);  

  42. }  

  43. public boolean removeEntry(long _rowIndex) {  

  44. return db.delete(DATABASE_TABLE, KEY_ID + “=” + _rowIndex, null) > 0;  

  45. }  

  46. public Cursor getAllEntries () {  

  47. return db.query(DATABASE_TABLE, new String[] {KEY_ID, KEY_NAME},  

  48. null, null, null, null, null);  

  49. }  

  50. public MyObject getEntry(long _rowIndex) {  

  51. MyObject objectInstance = new MyObject();  

  52. // TODO Return a cursor to a row from the database and  

  53. // use the values to populate an instance of MyObject  

  54. return objectInstance;  

  55. }  

  56. public int updateEntry(long _rowIndex, MyObject _myObject) {  

  57. String where = KEY_ID + “=” + _rowIndex;  

  58. ContentValues contentValues = new ContentValues();  

  59. // TODO fill in the ContentValue based on the new object  

  60. return db.update(DATABASE_TABLE, contentValues, where, null);  

  61. }  

  62. private static class myDbHelper extends SQLiteOpenHelper   

  63. {  

  64. public myDbHelper(Context context, String name, CursorFactory factory, 
    int version) {  

  65. super(context, name, factory, version);  

  66. }  

  67. // Called when no database exists in  

  68. // disk and the helper class needs  

  69. // to create a new one.  

  70. @Override  

  71. public void onCreate(SQLiteDatabase _db) {  

  72. _db.execSQL(DATABASE_CREATE);  

  73. }  

  74. // Called when there is a database version mismatch meaning that  

  75. // the version of the database on disk needs to be upgraded to  

  76. // the current version.  

  77. @Override  

  78. public void onUpgrade(SQLiteDatabase _db, int _oldVersion, 
    int _newVersion) {  

  79. // Log the version upgrade.  

  80. Log.w(“TaskDBAdapter”, “Upgrading from version “ +  

  81. _oldVersion + “ to “ + _newVersion +  

  82. “, which will destroy all old data”);  

  83. // Upgrade the existing database to conform to the new version.  

  84. // Multiple previous versions can be handled by comparing  

  85. // _oldVersion and _newVersion values.  

  86. // The simplest case is to drop the old table and create a  

  87. // new one.  

  88. _db.execSQL(“DROP TABLE IF EXISTS “ + DATABASE_TABLE);  

  89. // Create a new one.  

  90. onCreate(_db);  

  91. }  

  92. }  

關(guān)于Android中數(shù)據(jù)庫的工作方式是什么問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI