From 4a28853fdc32530b31f75b3dc43cd6f22499901d Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Thu, 19 Jan 2023 10:07:21 +0800 Subject: [PATCH] delete version from relationStore nameSpace API getRdbStore Signed-off-by: PaDaBoo --- .../OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md b/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md index 751ad0ba5a..999ba1d22e 100644 --- a/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md +++ b/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/changelogs-distributeddatamgr.md @@ -77,8 +77,8 @@ function getRdbStoreV9(context: Context, config: StoreConfigV9, version: number) ``` 从@ohos.data.rdb.d.ts 迁移至@ohos.data.relationalStore.d.ts: ``` -function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback): void; -function getRdbStore(context: Context, config: StoreConfig, version: number): Promise; +function getRdbStore(context: Context, config: StoreConfig, callback: AsyncCallback): void; +function getRdbStore(context: Context, config: StoreConfig): Promise; ``` **适配指导** -- GitLab