Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
eb5a6a27
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
eb5a6a27
编写于
10月 20, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 20, 2022
浏览文件
操作
浏览文件
下载
差异文件
!10840 分布式数据错误码整改
Merge pull request !10840 from 杨青/master
上级
86b9deb4
c624ebe2
变更
5
展开全部
显示空白变更内容
内联
并排
Showing
5 changed file
with
6005 addition
and
873 deletion
+6005
-873
zh-cn/application-dev/database/database-mdds-guidelines.md
zh-cn/application-dev/database/database-mdds-guidelines.md
+69
-62
zh-cn/application-dev/reference/apis/Readme-CN.md
zh-cn/application-dev/reference/apis/Readme-CN.md
+2
-2
zh-cn/application-dev/reference/apis/js-apis-distributed-data.md
...pplication-dev/reference/apis/js-apis-distributed-data.md
+48
-809
zh-cn/application-dev/reference/apis/js-apis-distributedKVStore.md
...lication-dev/reference/apis/js-apis-distributedKVStore.md
+5790
-0
zh-cn/application-dev/reference/errorcodes/errorcode-distributedKVStore.md
...-dev/reference/errorcodes/errorcode-distributedKVStore.md
+96
-0
未找到文件。
zh-cn/application-dev/database/database-mdds-guidelines.md
浏览文件 @
eb5a6a27
...
...
@@ -6,15 +6,15 @@
## 接口说明
分布式数据相关功能接口请见
[
分布式数据管理
](
../reference/apis/js-apis-distributed-data.md
)
。
分布式数据相关功能接口请见
[
分布式键值数据库
](
../reference/apis/js-apis-distributedKVStore.md
)
。
**表1**
分布式数据服务关键API功能介绍
| 接口名称 | 描述 |
| ------------------------------------------------------------ | ----------------------------------------------- |
| ------------------------------------------------------------ | -----------------------------------------------
-------------
|
| createKVManager(config: KVManagerConfig, callback: AsyncCallback
<
KVManager
>
): void
<br/>
createKVManager(config: KVManagerConfig): Promise
<
KVManager> | 创建一个
`KVManager`
对象实例,用于管理数据库对象。 |
| getKVStore
<
TextendsKVStore
>
(storeId: string, options: Options, callback: AsyncCallback
<
T
>
): void
<br/>
getKVStore
<
TextendsKVStore
>
(storeId: string, options: Options): Promise
<
T
>
| 指定
`Options`
和
`storeId`
,创建并获取
`KVStore`
数据库。 |
| getKVStore
<
TextendsKVStore
>
(storeId: string, options: Options, callback: AsyncCallback
<
T
>
): void
<br/>
getKVStore
<
TextendsKVStore
>
(storeId: string, options: Options): Promise
<
T
>
| 指定
`Options`
和
`storeId`
,创建并获取
指定类型
`KVStore`
数据库。 |
| put(key: string, value: Uint8Array
\|
string
\|
number
\|
boolean, callback: AsyncCallback
<
void
>
): void
<br/>
put(key: string, value: Uint8Array
\|
string
\|
number
\|
boolean): Promise
<
void> | 插入和更新数据。 |
| delete(key: string, callback: AsyncCallback
<
void
>
): void
<br/>
delete(key: string): Promise
<
void> | 删除数据。 |
| get(key: string, callback: AsyncCallback
<
Uint8Array\|string\|boolean\|number
>
): void
<br/>
get(key: string): Promise
<
Uint8Array
\|
string
\|
boolean
\|
number> | 查询数据。 |
...
...
@@ -28,8 +28,9 @@
1.
导入模块。
```
js
import
distributed
Data
from
'
@ohos.data.distributedData
'
;
import
distributed
KVStore
from
'
@ohos.data.distributedKVStore
'
;
```
2.
请求权限(同步操作时进行该步骤)。
需要在
`config.json`
文件里进行配置请求权限(FA模型),示例代码如下:
...
...
@@ -45,6 +46,7 @@
}
}
```
Stage模型下的权限请求请参见
[
权限声明-Stage模型
](
../security/accesstoken-guidelines.md#stage模型
)
。
这个权限还需要在应用首次启动的时候弹窗获取用户授权,可以通过如下代码实现:
...
...
@@ -113,22 +115,18 @@
try {
const kvManagerConfig = {
bundleName: 'com.example.datamanagertest',
userInfo
:
{
context:context,
userId
:
'
0
'
,
userType
:
distributedData
.
UserType
.
SAME_USER_ID
}
}
distributed
Data
.
createKVManager
(
kvManagerConfig
,
function
(
err
,
manager
)
{
distributed
KVStore
.createKVManager(kvManagerConfig, function (err, manager) {
if (err) {
console
.
log
(
'
createKVManager err: ${error}
'
);
console.
error(
`Failed to createKVManager.code is ${err.code},message is ${err.message}`
);
return;
}
console
.
log
(
'
createKVManager success
'
);
console.log('
Succeeded in creating KVManager
');
kvManager = manager;
});
} catch (e) {
console
.
log
(
'
An unexpected error occurred. Error: ${e}
'
);
console.
error(
`An unexpected error occurred.code is ${e.code},message is ${e.message}`
);
}
```
...
...
@@ -147,19 +145,19 @@
encrypt: false,
backup: false,
autoSync: false,
kvStoreType
:
distributed
Data
.
KVStoreType
.
SINGLE_VERSION
,
securityLevel
:
distributed
Data
.
SecurityLevel
.
S0
kvStoreType: distributed
KVStore
.KVStoreType.SINGLE_VERSION,
securityLevel: distributed
KVStore.SecurityLevel.S1
};
kvManager.getKVStore('storeId', options, function (err, store) {
if (err) {
console
.
log
(
'
getKVStore err: ${err}
'
);
console.
error(
`Failed to get KVStore: code is ${err.code},message is ${err.message}`
);
return;
}
console
.
log
(
'
getKVStore success
'
);
console.log('
Succeeded in getting KVStore
');
kvStore = store;
});
} catch (e) {
console
.
log
(
'
An unexpected error occurred. Error: ${e}
'
);
console.
error(
`An unexpected error occurred.code is ${e.code},message is ${e.message}`
);
}
```
...
...
@@ -172,9 +170,13 @@
以下为订阅单版本分布式数据库数据变化通知的代码示例:
```
js
kvStore
.
on
(
'
dataChange
'
,
distributedData
.
SubscribeType
.
SUBSCRIBE_TYPE_ALL
,
function
(
data
)
{
console
.
log
(
"
dataChange callback call data: ${data}
"
);
try{
kvStore.on('dataChange', distributedKVStore.SubscribeType.SUBSCRIBE_TYPE_ALL, function (data) {
console.log(
`dataChange callback call data: ${data}`
);
});
}catch(e){
console.error(
`An unexpected error occured.code is ${e.code},message is ${e.message}`
);
}
```
6. 将数据写入分布式数据库。
...
...
@@ -188,15 +190,15 @@
const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try {
kvStore
.
put
(
KEY_TEST_STRING_ELEMENT
,
VALUE_TEST_STRING_ELEMENT
,
function
(
err
,
data
)
{
kvStore.put(KEY_TEST_STRING_ELEMENT, VALUE_TEST_STRING_ELEMENT, function (err,data) {
if (err != undefined) {
console
.
log
(
'
put err: ${error}
'
);
console.
error(
`Failed to put.code is ${err.code},message is ${err.message}`
);
return;
}
console
.
log
(
'
put success
'
);
console.log(
"Succeeded in putting"
);
});
}
catch
(
e
)
{
console
.
log
(
'
An unexpected error occurred. Error: ${e}
'
);
}catch (e) {
console.
error(
`An unexpected error occurred.code is ${e.code},message is ${e.message}`
);
}
```
...
...
@@ -211,18 +213,22 @@
const KEY_TEST_STRING_ELEMENT = 'key_test_string';
const VALUE_TEST_STRING_ELEMENT = 'value-test-string';
try {
kvStore
.
put
(
KEY_TEST_STRING_ELEMENT
,
VALUE_TEST_STRING_ELEMENT
,
function
(
err
,
data
)
{
kvStore.put(KEY_TEST_STRING_ELEMENT, VALUE_TEST_STRING_ELEMENT, function (err,data) {
if (err != undefined) {
console
.
log
(
'
put err: ${error}
'
);
console.
error(
`Failed to put.code is ${err.code},message is ${err.message}`
);
return;
}
console
.
log
(
'
put success
'
);
kvStore
.
get
(
KEY_TEST_STRING_ELEMENT
,
function
(
err
,
data
)
{
console
.
log
(
'
get success data: ${data}
'
);
console.log("Succeeded in putting");
kvStore.get(KEY_TEST_STRING_ELEMENT, function (err,data) {
if (err != undefined) {
console.error(
`Failed to get.code is ${err.code},message is ${err.message}`
);
return;
}
console.log(
`Succeeded in getting data:${data}`
);
});
});
}
catch
(
e
)
{
console
.
log
(
'
An unexpected error occurred. Error: ${e}
'
);
}catch (e) {
console.
error(
`Failed to get.code is ${e.code},message is ${e.message}`
);
}
```
...
...
@@ -254,13 +260,14 @@
}
try{
// 1000表示最大延迟时间为1000ms
kvStore
.
sync
(
deviceIds
,
distributed
Data
.
SyncMode
.
PUSH_ONLY
,
1000
);
kvStore.sync(deviceIds, distributed
KVStore
.SyncMode.PUSH_ONLY, 1000);
} catch (e) {
console
.
log
(
'
An unexpected error occurred. Error: ${e}
'
);
console.
error(
`An unexpected error occurred. code is ${e.code},message is ${e.message}`
);
}
}
});
```
## 相关实例
针对分布式数据开发,有以下相关实例可供参考:
...
...
zh-cn/application-dev/reference/apis/Readme-CN.md
浏览文件 @
eb5a6a27
...
...
@@ -140,8 +140,8 @@
-
[
@ohos.data.dataShare (数据共享)
](
js-apis-data-dataShare.md
)
-
[
@ohos.data.dataSharePredicates (数据共享谓词)
](
js-apis-data-dataSharePredicates.md
)
-
[
@ohos.data.dataShareResultSet (数据共享结果集)
](
js-apis-data-DataShareResultSet.md
)
-
[
@ohos.data.distributedData (分布式数据管理)
](
js-apis-distributed-data.md
)
-
[
@ohos.data.distributedDataObject (分布式数据对象)
](
js-apis-data-distributedobject.md
)
-
[
@ohos.data.distributedKVStore (分布式键值数据库)
](
js-apis-distributedKVStore.md
)
-
[
@ohos.data.preferences (首选项)
](
js-apis-data-preferences.md
)
-
[
@ohos.data.rdb (关系型数据库)
](
js-apis-data-rdb.md
)
-
[
@ohos.data.ValuesBucket (数据集)
](
js-apis-data-ValuesBucket.md
)
...
...
@@ -210,7 +210,6 @@
-
[
@ohos.wallpaper (壁纸)
](
js-apis-wallpaper.md
)
-
[
@ohos.web.webview(Web)
](
js-apis-webview.md
)
-
[
Timer (定时器)
](
js-apis-timer.md
)
-
设备管理
-
[
@ohos.batteryInfo (电量信息)
](
js-apis-battery-info.md
)
...
...
@@ -271,6 +270,7 @@
-
已停止维护的接口
-
[
@ohos.bytrace (性能打点)
](
js-apis-bytrace.md
)
-
[
@ohos.data.storage (轻量级存储)
](
js-apis-data-storage.md
)
-
[
@ohos.data.distributedData (分布式数据管理)
](
js-apis-distributed-data.md
)
-
[
@ohos.prompt (弹窗)
](
js-apis-prompt.md
)
-
[
@ohos.reminderAgent (后台代理提醒)
](
js-apis-reminderAgent.md
)
-
[
@system.app (应用上下文)
](
js-apis-system-app.md
)
...
...
zh-cn/application-dev/reference/apis/js-apis-distributed-data.md
浏览文件 @
eb5a6a27
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-distributedKVStore.md
0 → 100644
浏览文件 @
eb5a6a27
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/errorcodes/errorcode-distributedKVStore.md
0 → 100644
浏览文件 @
eb5a6a27
# 分布式键值数据库错误码
## 15100001 超过最大订阅数量
### 错误信息
Over max subscribe limits.
### 错误描述
该错误码表示在调用数据库变化订阅on接口时,订阅数量已超过最大限制。
### 可能原因
在调用订阅数据库变化接口时,对数据库的订阅数量已超过最大限制。
### 处理步骤
取消对数据库的部分订阅后,再次尝试订阅。
## 15100002 打开已有数据库时参数配置发生变化
### 错误信息
Open existed database with changed options.
### 错误描述
该错误码表示在调用getKVStore接口打开已创建的数据库时,options配置参数发生变化。
### 可能原因
打开已创建的数据库时,options参数配置发生了变化,可能原因如下:
1.
期望新建数据库时,使用了已创建过的数据库名称storeId。
2.
期望改变已创建数据库的options参数配置。
### 处理步骤
1.
新建数据库前,请检查数据库名称storeId不与已创建数据库的storeId重名。
2.
期望改变已创建数据库的options参数配置时,当前不支持该操作,请自行删除数据库后使用新的options参数重新创建。
## 15100003 数据库损坏
### 错误信息
Database corrupted.
### 错误描述
该错误码表示在调用数据库增、删、查、数据同步等接口时,数据库已损坏。
### 可能原因
调用数据库增、删、查、数据同步等接口操作数据库时,数据库文件已损坏。
### 处理步骤
1.
如果之前备份过数据库,可尝试使用已备份的数据库文件恢复数据库。
2.
如果之前没有备份过数据库,可尝试删除数据库后重新创建。
## 15100004 未找到相关数据
### 错误信息
Not found.
### 错误描述
该错误码表示在调用数据库deleteKVStore、delete、deleteBatch、get等接口时,未找到相关数据。
### 可能原因
在调用删除数据库、数据查询、数据删除等接口时未找到相关数据,可能原因如下。
1.
删除数据库操作时,数据库不存在或已删除。
2.
数据库数据查询操作时,相关数据不存在或已删除。
3.
数据库数据删除操作时,相关数据不存在或已删除。
### 处理步骤
1.
在删除数据库操作前,请检查数据库名称是否正确或是否重复删除。
2.
在数据库数据查询操作前,请检查查询关键字是否正确。
3.
在数据库数据删除操作前,请检查删除关键字是否正确或是否重复删除。
## 15100005 不支持当前操作
### 错误信息
Not support the operation.
### 错误描述
该错误码表示在调用数据库backup、restore等接口时,当前数据库不支持该操作。
### 可能原因
在调用数据库备份、恢复等接口时,当前数据库不支持该操作。
### 处理步骤
检查当前数据库是否支持备份、恢复操作。
## 15100006 数据库或查询结果集已关闭
### 错误信息
Database or result set already closed.
### 错误描述
该错误码表示在调用数据库或查询结果集相关接口时,数据库或查询结果集为关闭状态。
### 可能原因
在数据库或查询结果集操作前,已经手动关闭了数据库或查询结果集。
### 处理步骤
1.
在数据库相关操作前,请重新打开数据库之后再重试当前操作。
2.
在查询结果集相关操作前,请重新查询获取结果集之后再重试当前操作。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录