Android -- 面試 -- 資料庫升級策略

來源:互聯網
上載者:User

標籤:exists   --   cat   nsa   tables   table   rri   database   catch   

升級:重寫onUpgrade方法

  1. 確定 相鄰版本 的差別,從版本1開始依次迭代更新,先執行v1到v2,再v2到v3……
  2. 為 每個版本 確定與現在資料庫的差別,為每個case撰寫專門的升級代碼。

降級

onDowngrade()資料庫降級:比如從資料庫4降級到資料庫3必須重寫該方法。

@Override    public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {        super.onDowngrade(db, oldVersion, newVersion);    }

 

遷移資料:

  1. 將現有表重新命名為暫存資料表;
  2. 建立新表;
  3. 將暫存資料表的資料匯入新表(注意處理修改的列);
  4. 刪除暫存資料表。
protected void upgradeTables(SQLiteDatabase db, String tableName, String columns)  {      try      {          db.beginTransaction();          // 1, 將現有表重新命名為暫存資料表        String tempTableName = tableName + "_temp";          String sql = "ALTER TABLE " + tableName +" RENAME TO " + tempTableName;          execSQL(db, sql, null);          // 2, 建立新表          //onCreateTable(db);         createNewTableX(db);        // 3, 將暫存資料表資料匯入新表中        sql =   "INSERT INTO " + tableName +                  " (" + columns + ") " +                  " SELECT " + columns + " FROM " + tempTableName;          execSQL(db, sql, null);          // 4, 刪除暫存資料表         execSQL(db, "DROP TABLE IF EXISTS " + tempTableName, null);          db.setTransactionSuccessful();      }      catch (SQLException e)      {          e.printStackTrace();      }      catch (Exception e)      {          e.printStackTrace();      }      finally      {          db.endTransaction();      }  }  

 

Android -- 面試 -- 資料庫升級策略

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.