Best practices for in-app database migration for Sqlite

前端 未结 8 2075
囚心锁ツ
囚心锁ツ 2020-11-30 16:31

I am using sqlite for my iphone and I anticipate the database schema might change over time. What are the gotchas, naming conventions and things to watch out for to do a su

8条回答
  •  日久生厌
    2020-11-30 17:17

    If you change the database schema and all code that's using it in lockstep, as is likely to be the case in embedded and phone-located apps, the problem is actually well under control (nothing comparable to the nightmare that's schema migration on an enterprise DB that may be serving hundreds of apps -- not all under the DBA's control either;-).

提交回复
热议问题