#鸿蒙通关秘籍#如何在应用中处理数据库的数据迁移?

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Yvr第七章BI

借助Mover类,提供接口在解锁后执行数据迁移。如果C类数据库中存在数据,使用move方法将数据迁移到E类数据库。数据迁移完成后,可通过deleteCStore销毁C类数据库。如下示例:

typescript export class Mover { async move(eStore: DistributedKVStore, cStore: DistributedKVStore): Promise<void> { if (eStore != null && cStore != null) { let entries: distributedKVStore.Entry[] = await cStore.getEntries('key_test_string'); await eStore.putBatch(entries); } } }

分享
微博
QQ
微信
回复
2天前
相关问题
数据库迁移问题有了解吗?
1953浏览 • 1回复 待解决