js-apis-data-rdb.md 57.9 KB
Newer Older
1
# @ohos.data.rdb (关系型数据库)
Z
zengyawen 已提交
2

W
wuyongning 已提交
3 4
关系型数据库(Relational Database,RDB)是一种基于关系模型来管理数据的数据库。关系型数据库基于SQLite组件提供了一套完整的对本地数据库进行管理的机制,对外提供了一系列的增、删、改、查等接口,也可以直接运行用户输入的SQL语句来满足复杂的场景需要。

W
wuyongning 已提交
5
该模块提供以下关系型数据库相关的常用功能:
W
wuyongning 已提交
6

7 8
- [RdbPredicates](#rdbpredicates): 数据库中用来代表数据实体的性质、特征或者数据实体之间关系的词项,主要用来定义数据库的操作条件。
- [RdbStore](#rdbstore):提供管理关系数据库(RDB)方法的接口。
W
wuyongning 已提交
9

G
ge-yafang 已提交
10
> **说明:**
11
> 
12
> 从API Version 9开始,该接口不再维护,推荐使用新接口[@ohos.data.relationalStore](js-apis-data-relationalStore.md)。
13
>
14 15
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

Z
zengyawen 已提交
16

Z
zengyawen 已提交
17
## 导入模块
Z
zengyawen 已提交
18

G
ge-yafang 已提交
19
```js
G
ge-yafang 已提交
20
import data_rdb from '@ohos.data.rdb';
Z
zengyawen 已提交
21
```
22
## data_rdb.getRdbStore
Z
zengyawen 已提交
23

W
wuyongning 已提交
24 25
getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback<RdbStore>): void

W
wangxiyue 已提交
26
获得一个相关的RdbStore,操作关系型数据库,用户可以根据自己的需求配置RdbStore的参数,然后通过RdbStore调用相关接口可以执行相关的数据操作,使用callback异步回调。
W
wuyongning 已提交
27

L
lihuihui 已提交
28
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
29

P
PaDaBoo 已提交
30
**参数:**
W
wuyongning 已提交
31

L
lihuihui 已提交
32 33
| 参数名   | 类型                                       | 必填 | 说明                                                         |
| -------- | ------------------------------------------ | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
34
| context  | Context                                    | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
35
| config   | [StoreConfig](#storeconfig)                | 是   | 与此RDB存储相关的数据库配置。                                |
36
| version  | number                                     | 是   | 数据库版本。<br>目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。                                                 |
L
lihuihui 已提交
37
| callback | AsyncCallback&lt;[RdbStore](#rdbstore)&gt; | 是   | 指定callback回调函数,返回RdbStore对象。                     |
W
wuyongning 已提交
38

P
PaDaBoo 已提交
39
**示例:**
W
wuyongning 已提交
40

41 42
FA模型示例:

W
wuyongning 已提交
43
```js
44 45
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
46
let context = featureAbility.getContext()
47 48

// 获取context后调用getRdbStore
W
wuyongning 已提交
49
const STORE_CONFIG = { name: "RdbTest.db"}
50
data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) {
P
PaDaBoo 已提交
51 52 53 54 55
    if (err) {
        console.info("Get RdbStore failed, err: " + err)
        return
    }
    console.log("Get RdbStore successfully.")
W
wuyongning 已提交
56 57 58
})
```

59 60 61 62 63
Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
L
lihuihui 已提交
64
let context
65 66
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
67 68 69
        context = this.context
    }
}
L
lihuihui 已提交
70

71 72 73
// 获取context后调用getRdbStore
const STORE_CONFIG = { name: "RdbTest.db"}
data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) {
L
lihuihui 已提交
74
    if (err) {
75
        console.info("Get RdbStore failed, err: " + err)
L
lihuihui 已提交
76 77
        return
    }
78
    console.log("Get RdbStore successfully.")
L
lihuihui 已提交
79 80 81
})
```

82
## data_rdb.getRdbStore
L
lihuihui 已提交
83

84
getRdbStore(context: Context, config: StoreConfig, version: number): Promise&lt;RdbStore&gt;
L
lihuihui 已提交
85

86
获得一个相关的RdbStore,操作关系型数据库,用户可以根据自己的需求配置RdbStore的参数,然后通过RdbStore调用相关接口可以执行相关的数据操作,使用Promise异步回调。
L
lihuihui 已提交
87 88 89 90 91

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

92 93 94 95 96
| 参数名  | 类型                        | 必填 | 说明                                                         |
| ------- | --------------------------- | ---- | ------------------------------------------------------------ |
| context | Context                     | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
| config  | [StoreConfig](#storeconfig) | 是   | 与此RDB存储相关的数据库配置。                                |
| version | number                      | 是   | 数据库版本。<br>目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。                                                 |
L
lihuihui 已提交
97 98 99

**返回值**

100 101 102
| 类型                                 | 说明                            |
| ------------------------------------ | ------------------------------- |
| Promise&lt;[RdbStore](#rdbstore)&gt; | Promise对象。返回RdbStore对象。 |
L
lihuihui 已提交
103 104 105

**示例:**

106 107
FA模型示例:

L
lihuihui 已提交
108
```js
109 110 111 112 113 114 115 116 117
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用getRdbStore
const STORE_CONFIG = { name: "RdbTest.db" }
let promise = data_rdb.getRdbStore(context, STORE_CONFIG, 1);
promise.then(async (rdbStore) => {
    console.log("Get RdbStore successfully.")
L
lihuihui 已提交
118
}).catch((err) => {
119
    console.log("Get RdbStore failed, err: " + err)
L
lihuihui 已提交
120 121 122
})
```

123
Stage模型示例:
L
lihuihui 已提交
124

125 126 127 128 129 130 131 132 133
```ts
// 获取context
import Ability from '@ohos.application.Ability'
let context
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}
L
lihuihui 已提交
134

135 136 137 138 139 140 141 142 143
// 获取context后调用getRdbStore
const STORE_CONFIG = { name: "RdbTest.db" }
let promise = data_rdb.getRdbStore(context, STORE_CONFIG, 1);
promise.then(async (rdbStore) => {
    console.log("Get RdbStore successfully.")
}).catch((err) => {
    console.log("Get RdbStore failed, err: " + err)
})
```
L
lihuihui 已提交
144

145
## data_rdb.deleteRdbStore
146 147 148 149 150

deleteRdbStore(context: Context, name: string, callback: AsyncCallback&lt;void&gt;): void

删除数据库,使用callback异步回调。

L
lihuihui 已提交
151 152 153 154
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

155 156 157 158 159
| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
| context  | Context                   | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
| name     | string                    | 是   | 数据库名称。                                                 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。                                       |
L
lihuihui 已提交
160 161 162

**示例:**

163 164
FA模型示例:

L
lihuihui 已提交
165
```js
166 167 168 169 170 171
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用deleteRdbStore
data_rdb.deleteRdbStore(context, "RdbTest.db", function (err) {
L
lihuihui 已提交
172
    if (err) {
173
        console.info("Delete RdbStore failed, err: " + err)
L
lihuihui 已提交
174 175
        return
    }
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
    console.log("Delete RdbStore successfully.")
})
```

Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
let context
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}

// 获取context后调用deleteRdbStore
data_rdb.deleteRdbStore(context, "RdbTest.db", function (err) {
    if (err) {
        console.info("Delete RdbStore failed, err: " + err)
        return
L
lihuihui 已提交
197
    }
198
    console.log("Delete RdbStore successfully.")
L
lihuihui 已提交
199 200 201
})
```

202
## data_rdb.deleteRdbStore
L
lihuihui 已提交
203

204
deleteRdbStore(context: Context, name: string): Promise&lt;void&gt;
L
lihuihui 已提交
205

206
使用指定的数据库文件配置删除数据库,使用Promise异步回调。
L
lihuihui 已提交
207 208 209

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

210
**参数**
L
lihuihui 已提交
211

212 213 214 215
| 参数名  | 类型    | 必填 | 说明                                                         |
| ------- | ------- | ---- | ------------------------------------------------------------ |
| context | Context | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
| name    | string  | 是   | 数据库名称。                                                 |
L
lihuihui 已提交
216 217 218

**返回值**

219 220 221
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
L
lihuihui 已提交
222 223 224

**示例:**

225 226
FA模型示例:

L
lihuihui 已提交
227
```js
228 229 230 231 232 233 234 235
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用deleteRdbStore
let promise = data_rdb.deleteRdbStore(context, "RdbTest.db")
promise.then(() => {
    console.log("Delete RdbStore successfully.")
L
lihuihui 已提交
236
}).catch((err) => {
237
    console.info("Delete RdbStore failed, err: " + err)
L
lihuihui 已提交
238 239 240
})
```

241
Stage模型示例:
L
lihuihui 已提交
242

243 244 245 246 247 248 249
```ts
// 获取context
import Ability from '@ohos.application.Ability'
let context
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
L
lihuihui 已提交
250 251 252
    }
}

253 254 255 256 257 258 259
// 获取context后调用deleteRdbStore
let promise = data_rdb.deleteRdbStore(context, "RdbTest.db")
promise.then(()=>{
    console.log("Delete RdbStore successfully.")
}).catch((err) => {
    console.info("Delete RdbStore failed, err: " + err)
})
L
lihuihui 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272
```

数据库的安全级别枚举。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

| 名称 | 值   | 说明                                                         |
| ---- | ---- | ------------------------------------------------------------ |
| S1   | 1    | 表示数据库的安全级别为低级别,当数据泄露时会产生较低影响。例如,包含壁纸等系统数据的数据库。 |
| S2   | 2    | 表示数据库的安全级别为中级别,当数据泄露时会产生较大影响。例如,包含录音、视频等用户生成数据或通话记录等信息的数据库。 |
| S3   | 3    | 表示数据库的安全级别为高级别,当数据泄露时会产生重大影响。例如,包含用户运动、健康、位置等信息的数据库。 |
| S4   | 4    | 表示数据库的安全级别为关键级别,当数据泄露时会产生严重影响。例如,包含认证凭据、财务数据等信息的数据库。 |

273
## ValueType
L
lihuihui 已提交
274 275 276 277 278 279 280 281 282 283 284 285

用于表示允许的数据字段类型。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

| 类型    | 说明                 |
| ------- | -------------------- |
| number  | 表示值类型为数字。   |
| string  | 表示值类型为字符。   |
| boolean | 表示值类型为布尔值。 |


286
## ValuesBucket
L
lihuihui 已提交
287 288 289 290 291 292 293 294 295

用于存储键值对的类型。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

| 键类型 | 值类型                                                      |
| ------ | ----------------------------------------------------------- |
| string | [ValueType](#valuetype)\|&nbsp;Uint8Array&nbsp;\|&nbsp;null |

296
## SyncMode<sup>8+</sup>
L
lihuihui 已提交
297 298 299 300 301 302 303 304 305 306

指数据库同步模式。

**系统能力:**SystemCapability.DistributedDataManager.RelationalStore.Core

| 名称           | 值   | 说明                               |
| -------------- | ---- | ---------------------------------- |
| SYNC_MODE_PUSH | 0    | 表示数据从本地设备推送到远程设备。 |
| SYNC_MODE_PULL | 1    | 表示数据从远程设备拉至本地设备。   |

307
## SubscribeType<sup>8+</sup>
L
lihuihui 已提交
308 309 310 311 312 313 314 315 316 317 318

描述订阅类型。

**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

| 名称                  | 值   | 说明               |
| --------------------- | ---- | ------------------ |
| SUBSCRIBE_TYPE_REMOTE | 0    | 订阅远程数据更改。 |

319
## StoreConfig
320 321 322 323 324 325 326 327 328

管理关系数据库配置。

**系统能力:**SystemCapability.DistributedDataManager.RelationalStore.Core

| 名称 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| name | string | 是 | 数据库文件名。 |

329
## RdbPredicates
L
lihuihui 已提交
330 331 332

表示关系型数据库(RDB)的谓词。该类确定RDB中条件表达式的值是true还是false。

333
### constructor
L
lihuihui 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352

constructor(name: string)

构造函数。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| name | string | 是 | 数据库表名。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
```

353
### inDevices<sup>8+</sup>
L
lihuihui 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379

inDevices(devices: Array&lt;string&gt;): RdbPredicates

同步分布式数据库时连接到组网内指定的远程设备。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| devices | Array&lt;string&gt; | 是 | 指定的组网内的远程设备ID。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.inDevices(['12345678abcde'])
```

380
### inAllDevices<sup>8+</sup>
L
lihuihui 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400

inAllDevices(): RdbPredicates

同步分布式数据库时连接到组网内所有的远程设备。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.inAllDevices()
```

401
### equalTo
L
lihuihui 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429

equalTo(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为ValueType且值等于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "lisi")
```


430
### notEqualTo
L
lihuihui 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458

notEqualTo(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为ValueType且值不等于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.notEqualTo("NAME", "lisi")
```


459
### beginWrap
L
lihuihui 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484

beginWrap(): RdbPredicates

向谓词添加左括号。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回带有左括号的Rdb谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "lisi")
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```

485
### endWrap
L
lihuihui 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510

endWrap(): RdbPredicates

向谓词添加右括号。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回带有右括号的Rdb谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "lisi")
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```

511
### or
L
lihuihui 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533

or(): RdbPredicates

将或条件添加到谓词中。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回带有或条件的Rdb谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
    .or()
    .equalTo("NAME", "Rose")
```

534
### and
L
lihuihui 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556

and(): RdbPredicates

向谓词添加和条件。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回带有和条件的Rdb谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
    .and()
    .equalTo("SALARY", 200.5)
```

557
### contains
L
lihuihui 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584

contains(field: string, value: string): RdbPredicates

配置谓词以匹配数据字段为string且value包含指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | string | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.contains("NAME", "os")
```

585
### beginsWith
L
lihuihui 已提交
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612

beginsWith(field: string, value: string): RdbPredicates

配置谓词以匹配数据字段为string且值以指定字符串开头的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | string | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.beginsWith("NAME", "os")
```

613
### endsWith
L
lihuihui 已提交
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640

endsWith(field: string, value: string): RdbPredicates

配置谓词以匹配数据字段为string且值以指定字符串结尾的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | string | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.endsWith("NAME", "se")
```

641
### isNull
L
lihuihui 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666

isNull(field: string): RdbPredicates

配置谓词以匹配值为null的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例**
```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.isNull("NAME")
```

667
### isNotNull
L
lihuihui 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

isNotNull(field: string): RdbPredicates

配置谓词以匹配值不为null的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.isNotNull("NAME")
```

694
### like
L
lihuihui 已提交
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721

like(field: string, value: string): RdbPredicates

配置谓词以匹配数据字段为string且值类似于指定字符串的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | string | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.like("NAME", "%os%")
```

722
### glob
L
lihuihui 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749

glob(field: string, value: string): RdbPredicates

配置RdbPredicates匹配数据字段为string的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | string | 是 | 指示要与谓词匹配的值。<br>支持通配符,*表示0个、1个或多个数字或字符,?表示1个数字或字符。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.glob("NAME", "?h*g")
```

750
### between
L
lihuihui 已提交
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778

between(field: string, low: ValueType, high: ValueType): RdbPredicates

将谓词配置为匹配数据字段为ValueType且value在给定范围内的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| low | [ValueType](#valuetype) | 是 | 指示与谓词匹配的最小值。 |
| high | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的最大值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.between("AGE", 10, 50)
```

779
### notBetween
L
lihuihui 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807

notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates

配置RdbPredicates以匹配数据字段为ValueType且value超出给定范围的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| low | [ValueType](#valuetype) | 是 | 指示与谓词匹配的最小值。 |
| high | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的最大值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.notBetween("AGE", 10, 50)
```

808
### greaterThan
L
lihuihui 已提交
809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835

greaterThan(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为ValueType且值大于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.greaterThan("AGE", 18)
```

836
### lessThan
L
lihuihui 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863

lessThan(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为valueType且value小于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.lessThan("AGE", 20)
```

864
### greaterThanOrEqualTo
L
lihuihui 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891

greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为ValueType且value大于或等于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.greaterThanOrEqualTo("AGE", 18)
```

892
### lessThanOrEqualTo
L
lihuihui 已提交
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919

lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates

配置谓词以匹配数据字段为ValueType且value小于或等于指定值的字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | [ValueType](#valuetype) | 是 | 指示要与谓词匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.lessThanOrEqualTo("AGE", 20)
```

920
### orderByAsc
L
lihuihui 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946

orderByAsc(field: string): RdbPredicates

配置谓词以匹配其值按升序排序的列。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.orderByAsc("NAME")
```

947
### orderByDesc
L
lihuihui 已提交
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973

orderByDesc(field: string): RdbPredicates

配置谓词以匹配其值按降序排序的列。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.orderByDesc("AGE")
```

974
### distinct
L
lihuihui 已提交
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994

distinct(): RdbPredicates

配置谓词以过滤重复记录并仅保留其中一个。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回可用于过滤重复记录的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Rose").distinct()
```

995
### limitAs
L
lihuihui 已提交
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

limitAs(value: number): RdbPredicates

设置最大数据记录数的谓词。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | number | 是 | 最大数据记录数。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回可用于设置最大数据记录数的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Rose").limitAs(3)
```

1022
### offsetAs
L
lihuihui 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048

offsetAs(rowOffset: number): RdbPredicates

配置RdbPredicates以指定返回结果的起始位置。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| rowOffset | number | 是 | 返回结果的起始位置,取值为正整数。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回具有指定返回结果起始位置的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Rose").offsetAs(3)
```

1049
### groupBy
L
lihuihui 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075

groupBy(fields: Array&lt;string&gt;): RdbPredicates

配置RdbPredicates按指定列分组查询结果。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| fields | Array&lt;string&gt; | 是 | 指定分组依赖的列名。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回分组查询列的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.groupBy(["AGE", "NAME"])
```

1076
### indexedBy
L
lihuihui 已提交
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

indexedBy(field: string): RdbPredicates

配置RdbPredicates以指定索引列。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 索引列的名称。 |

**返回值**


| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回具有指定索引列的RdbPredicates。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.indexedBy("SALARY_INDEX")
```

1104
### in
L
lihuihui 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131

in(field: string, value: Array&lt;ValueType&gt;): RdbPredicates

配置RdbPredicates以匹配数据字段为ValueType数组且值在给定范围内的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | Array&lt;[ValueType](#valuetype)&gt; | 是 | 以ValueType型数组形式指定的要匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.in("AGE", [18, 20])
```

1132
### notIn
L
lihuihui 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159

notIn(field: string, value: Array&lt;ValueType&gt;): RdbPredicates

将RdbPredicates配置为匹配数据字段为ValueType且值超出给定范围的指定字段。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| field | string | 是 | 数据库表中的列名。 |
| value | Array&lt;[ValueType](#valuetype)&gt; | 是 | 以ValueType数组形式指定的要匹配的值。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| [RdbPredicates](#rdbpredicates) | 返回与指定字段匹配的谓词。 |

**示例:**

```js
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.notIn("NAME", ["Lisa", "Rose"])
```

1160
## RdbStore
L
lihuihui 已提交
1161 1162 1163

提供管理关系数据库(RDB)方法的接口。

1164
在使用以下相关接口前,请使用[executeSql](#executesql8)接口初始化数据库表结构和相关数据,具体可见[关系型数据库开发指导](../../database/database-relational-guidelines.md)
L
lihuihui 已提交
1165

1166
### insert
L
lihuihui 已提交
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199

insert(table: string, values: ValuesBucket, callback: AsyncCallback&lt;number&gt;):void

向目标表中插入一行数据,使用callback异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| table | string | 是 | 指定的目标表名。 |
| values | [ValuesBucket](#valuesbucket) | 是 | 表示要插入到表中的数据行。 |
| callback | AsyncCallback&lt;number&gt; | 是 | 指定callback回调函数。如果操作成功,返回行ID;否则返回-1。 |

**示例:**

```js
const valueBucket = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
rdbStore.insert("EMPLOYEE", valueBucket, function (status, rowId) {
    if (status) {
        console.log("Insert is failed");
        return;
    }
    console.log("Insert is successful, rowId = " + rowId);
})
```

1200
### insert
L
lihuihui 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237

insert(table: string, values: ValuesBucket):Promise&lt;number&gt;

向目标表中插入一行数据,使用Promise异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| table | string | 是 | 指定的目标表名。 |
| values | [ValuesBucket](#valuesbucket) | 是 | 表示要插入到表中的数据行。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;number&gt; | Promise对象。如果操作成功,返回行ID;否则返回-1。 |

**示例:**

```js
const valueBucket = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
let promise = rdbStore.insert("EMPLOYEE", valueBucket)
promise.then((rowId) => {
    console.log("Insert is successful, rowId = " + rowId);
}).catch((status) => {
    console.log("Insert is failed");
})
```

1238
### batchInsert
L
lihuihui 已提交
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285

batchInsert(table: string, values: Array&lt;ValuesBucket&gt;, callback: AsyncCallback&lt;number&gt;):void

向目标表中插入一组数据,使用callback异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| table | string | 是 | 指定的目标表名。 |
| values | Array&lt;[ValuesBucket](#valuesbucket)&gt; | 是 | 表示要插入到表中的一组数据。 |
| callback | AsyncCallback&lt;number&gt; | 是 | 指定callback回调函数。如果操作成功,返回插入的数据个数,否则返回-1。 |

**示例:**

```js
const valueBucket1 = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5])
}
const valueBucket2 = {
    "NAME": "Jack",
    "AGE": 19,
    "SALARY": 101.5,
    "CODES": new Uint8Array([6, 7, 8, 9, 10])
}
const valueBucket3 = {
    "NAME": "Tom",
    "AGE": 20,
    "SALARY": 102.5,
    "CODES": new Uint8Array([11, 12, 13, 14, 15])
}

let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
rdbStore.batchInsert("EMPLOYEE", valueBuckets, function(status, insertNum) {
    if (status) {
        console.log("batchInsert is failed, status = " + status);
        return;
    }
    console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
})
```

1286
### batchInsert
L
lihuihui 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337

batchInsert(table: string, values: Array&lt;ValuesBucket&gt;):Promise&lt;number&gt;

向目标表中插入一组数据,使用Promise异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| table | string | 是 | 指定的目标表名。 |
| values | Array&lt;[ValuesBucket](#valuesbucket)&gt; | 是 | 表示要插入到表中的一组数据。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;number&gt; | Promise对象。如果操作成功,返回插入的数据个数,否则返回-1。 |

**示例:**

```js
const valueBucket1 = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5])
}
const valueBucket2 = {
    "NAME": "Jack",
    "AGE": 19,
    "SALARY": 101.5,
    "CODES": new Uint8Array([6, 7, 8, 9, 10])
}
const valueBucket3 = {
    "NAME": "Tom",
    "AGE": 20,
    "SALARY": 102.5,
    "CODES": new Uint8Array([11, 12, 13, 14, 15])
}

let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
let promise = rdbStore.batchInsert("EMPLOYEE", valueBuckets);
promise.then((insertNum) => {
    console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
}).catch((status) => {
    console.log("batchInsert is failed, status = " + status);
})
```

1338
### update
L
lihuihui 已提交
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373

update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback&lt;number&gt;):void

根据RdbPredicates的指定实例对象更新数据库中的数据,使用callback异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| values | [ValuesBucket](#valuesbucket) | 是 | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的更新条件。 |
| callback | AsyncCallback&lt;number&gt; | 是 | 指定的callback回调方法。返回受影响的行数。 |

**示例:**

```js
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
rdbStore.update(valueBucket, predicates, function (err, ret) {
    if (err) {
        console.info("Updated failed, err: " + err)
        return
    }
    console.log("Updated row count: " + ret)
})
```

1374
### update
L
lihuihui 已提交
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413

update(values: ValuesBucket, predicates: RdbPredicates):Promise&lt;number&gt;

根据RdbPredicates的指定实例对象更新数据库中的数据,使用Promise异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| values | [ValuesBucket](#valuesbucket) | 是 | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的更新条件。 |

**返回值**

| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;number&gt; | 指定的Promise回调方法。返回受影响的行数。 |

**示例:**

```js
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
let promise = rdbStore.update(valueBucket, predicates)
promise.then(async (ret) => {
    console.log("Updated row count: " + ret)
}).catch((err) => {
    console.info("Updated failed, err: " + err)
})
```

1414
### delete
L
lihuihui 已提交
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427

delete(predicates: RdbPredicates, callback: AsyncCallback&lt;number&gt;):void

根据RdbPredicates的指定实例对象从数据库中删除数据,使用callback异步回调。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的删除条件。 |
| callback | AsyncCallback&lt;number&gt; | 是 | 指定callback回调函数。返回受影响的行数。 |
1428 1429

**示例:**
1430

1431
```js
L
lihuihui 已提交
1432 1433 1434
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
rdbStore.delete(predicates, function (err, rows) {
1435
    if (err) {
L
lihuihui 已提交
1436
        console.info("Delete failed, err: " + err)
1437 1438
        return
    }
L
lihuihui 已提交
1439
    console.log("Delete rows: " + rows)
1440 1441 1442
})
```

1443
### delete
1444

L
lihuihui 已提交
1445
delete(predicates: RdbPredicates):Promise&lt;number&gt;
1446

L
lihuihui 已提交
1447
根据RdbPredicates的指定实例对象从数据库中删除数据,使用Promise异步回调。
1448

L
lihuihui 已提交
1449
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1450 1451

**参数:**
1452

1453 1454
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
lihuihui 已提交
1455
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的删除条件。 |
1456 1457

**返回值**
L
li_juntao 已提交
1458

1459 1460
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1461
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |
1462 1463

**示例:**
1464

1465
```js
L
lihuihui 已提交
1466 1467 1468 1469 1470
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
let promise = rdbStore.delete(predicates)
promise.then((rows) => {
    console.log("Delete rows: " + rows)
1471
}).catch((err) => {
L
lihuihui 已提交
1472
    console.info("Delete failed, err: " + err)
1473 1474
})
```
Z
zengyawen 已提交
1475

1476
### query
1477

L
lihuihui 已提交
1478
query(predicates: RdbPredicates, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSet&gt;):void
1479

L
lihuihui 已提交
1480 1481
根据指定条件查询数据库中的数据,使用callback异步回调。

L
li_juntao 已提交
1482
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1483 1484

**参数:**
L
li_juntao 已提交
1485

1486 1487
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
lihuihui 已提交
1488
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的查询条件。 |
1489
| columns | Array&lt;string&gt; | 是 | 表示要查询的列。如果值为空,则查询应用于所有列。 |
L
lihuihui 已提交
1490
| callback | AsyncCallback&lt;[ResultSet](js-apis-data-resultset.md)&gt; | 是 | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
1491 1492

**示例:**
L
li_juntao 已提交
1493

1494
```js
L
lihuihui 已提交
1495 1496 1497
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Rose")
rdbStore.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"], function (err, resultSet) {
L
li_juntao 已提交
1498
    if (err) {
L
lihuihui 已提交
1499
        console.info("Query failed, err: " + err)
L
li_juntao 已提交
1500 1501
        return
    }
L
lihuihui 已提交
1502 1503
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
1504 1505 1506
})
```

1507
### query
L
lihuihui 已提交
1508 1509

query(predicates: RdbPredicates, columns?: Array&lt;string&gt;):Promise&lt;ResultSet&gt;
1510

L
lihuihui 已提交
1511
根据指定条件查询数据库中的数据,使用Promise异步回调。
1512

L
li_juntao 已提交
1513
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1514 1515 1516 1517 1518

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
lihuihui 已提交
1519
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的查询条件。 |
1520 1521
| columns | Array&lt;string&gt; | 否 | 表示要查询的列。如果值为空,则查询应用于所有列。 |

L
li_juntao 已提交
1522 1523
**返回值**

L
lihuihui 已提交
1524 1525 1526
| 类型 | 说明 |
| -------- | -------- |
| Promise&lt;[ResultSet](js-apis-data-resultset.md)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
L
li_juntao 已提交
1527

1528 1529
**示例:**

L
lihuihui 已提交
1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
  ```js
  let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
  predicates.equalTo("NAME", "Rose")
  let promise = rdbStore.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"])
  promise.then((resultSet) => {
      console.log("ResultSet column names: " + resultSet.columnNames)
      console.log("ResultSet column count: " + resultSet.columnCount)
  }).catch((err) => {
      console.info("Query failed, err: " + err)
  })
  ```
1541

1542
### querySql<sup>8+</sup>
M
mangtsang 已提交
1543 1544 1545

querySql(sql: string, bindArgs: Array&lt;ValueType&gt;, callback: AsyncCallback&lt;ResultSet&gt;):void

W
wangxiyue 已提交
1546
根据指定SQL语句查询数据库中的数据,使用callback异步回调。
M
mangtsang 已提交
1547

L
lihuihui 已提交
1548
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1549

P
PaDaBoo 已提交
1550
**参数:**
1551

Z
zengyawen 已提交
1552 1553 1554 1555 1556
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| sql | string | 是 | 指定要执行的SQL语句。 |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 是 | SQL语句中参数的值。 |
| callback | AsyncCallback&lt;[ResultSet](js-apis-data-resultset.md)&gt; | 是 | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
M
mangtsang 已提交
1557

P
PaDaBoo 已提交
1558
**示例:**
1559

P
PaDaBoo 已提交
1560 1561 1562 1563 1564 1565
```js
rdbStore.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'], function (err, resultSet) {
    if (err) {
        console.info("Query failed, err: " + err)
        return
    }
W
wuyongning 已提交
1566 1567
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
P
PaDaBoo 已提交
1568 1569
})
```
M
mangtsang 已提交
1570

1571
### querySql<sup>8+</sup>
M
mangtsang 已提交
1572 1573 1574

querySql(sql: string, bindArgs?: Array&lt;ValueType&gt;):Promise&lt;ResultSet&gt;

W
wangxiyue 已提交
1575
根据指定SQL语句查询数据库中的数据,使用Promise异步回调。
M
mangtsang 已提交
1576

L
lihuihui 已提交
1577
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1578

P
PaDaBoo 已提交
1579
**参数:**
1580

Z
zengyawen 已提交
1581 1582 1583 1584
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| sql | string | 是 | 指定要执行的SQL语句。 |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 否 | SQL语句中参数的值。 |
M
mangtsang 已提交
1585

Z
zengyawen 已提交
1586
**返回值**
1587

Z
zengyawen 已提交
1588 1589
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1590
| Promise&lt;[ResultSet](js-apis-data-resultset.md)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
M
mangtsang 已提交
1591

P
PaDaBoo 已提交
1592
**示例:**
1593

P
PaDaBoo 已提交
1594 1595 1596
```js
let promise = rdbStore.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'])
promise.then((resultSet) => {
W
wuyongning 已提交
1597 1598
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
P
PaDaBoo 已提交
1599 1600 1601 1602
}).catch((err) => {
    console.info("Query failed, err: " + err)
})
```
M
mangtsang 已提交
1603

1604
### executeSql<sup>8+</sup>
Z
zengyawen 已提交
1605 1606

executeSql(sql: string, bindArgs: Array&lt;ValueType&gt;, callback: AsyncCallback&lt;void&gt;):void
Z
zengyawen 已提交
1607

W
wangxiyue 已提交
1608
执行包含指定参数但不返回值的SQL语句,使用callback异步回调。
Z
zengyawen 已提交
1609

L
lihuihui 已提交
1610
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1611

P
PaDaBoo 已提交
1612
**参数:**
1613

Z
zengyawen 已提交
1614 1615 1616 1617 1618
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| sql | string | 是 | 指定要执行的SQL语句。 |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 是 | SQL语句中参数的值。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 指定callback回调函数。 |
Z
zengyawen 已提交
1619

P
PaDaBoo 已提交
1620
**示例:**
1621

P
PaDaBoo 已提交
1622 1623 1624 1625
```js
const SQL_CREATE_TABLE = "CREATE TABLE IF NOT EXISTS EMPLOYEE (ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INTEGER, SALARY REAL, CODES BLOB)"
rdbStore.executeSql(SQL_CREATE_TABLE, null, function(err) {
    if (err) {
W
wuyongning 已提交
1626
        console.info("ExecuteSql failed, err: " + err)
P
PaDaBoo 已提交
1627 1628
        return
    }
W
wuyongning 已提交
1629
    console.info('Create table done.')
P
PaDaBoo 已提交
1630 1631
})
```
Z
zengyawen 已提交
1632

1633
### executeSql<sup>8+</sup>
Z
zengyawen 已提交
1634

M
mangtsang 已提交
1635
executeSql(sql: string, bindArgs?: Array&lt;ValueType&gt;):Promise&lt;void&gt;
Z
zengyawen 已提交
1636

W
wangxiyue 已提交
1637
执行包含指定参数但不返回值的SQL语句,使用Promise异步回调。
Z
zengyawen 已提交
1638

L
lihuihui 已提交
1639
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1640

P
PaDaBoo 已提交
1641
**参数:**
1642

Z
zengyawen 已提交
1643 1644 1645 1646
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| sql | string | 是 | 指定要执行的SQL语句。 |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 否 | SQL语句中参数的值。 |
Z
zengyawen 已提交
1647

Z
zengyawen 已提交
1648
**返回值**
1649

Z
zengyawen 已提交
1650 1651
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1652
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
zengyawen 已提交
1653

P
PaDaBoo 已提交
1654
**示例:**
1655

P
PaDaBoo 已提交
1656 1657 1658 1659
```js
const SQL_CREATE_TABLE = "CREATE TABLE IF NOT EXISTS EMPLOYEE (ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INTEGER, SALARY REAL, CODES BLOB)"
let promise = rdbStore.executeSql(SQL_CREATE_TABLE)
promise.then(() => {
W
wuyongning 已提交
1660
    console.info('Create table done.')
P
PaDaBoo 已提交
1661 1662 1663 1664
}).catch((err) => {
    console.info("ExecuteSql failed, err: " + err)
})
```
S
sun-dou 已提交
1665

1666
### beginTransaction<sup>8+</sup>
W
wuyongning 已提交
1667 1668 1669 1670 1671

beginTransaction():void

在开始执行SQL语句之前,开始事务。

L
lihuihui 已提交
1672
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1673

P
PaDaBoo 已提交
1674
**示例:**
1675

G
ge-yafang 已提交
1676
```js
L
add  
ltdong 已提交
1677
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
1678
let context = featureAbility.getContext()
L
add  
ltdong 已提交
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
const STORE_CONFIG = { name: "RdbTest.db"}
data_rdb.getRdbStore(context, STORE_CONFIG, 1, async function (err, rdbStore) {
    rdbStore.beginTransaction()
	const valueBucket = {
		"name": "lisi",
		"age": 18,
		"salary": 100.5,
		"blobType": new Uint8Array([1, 2, 3]),
	}
	await rdbStore.insert("test", valueBucket)
	rdbStore.commit()
})
W
wuyongning 已提交
1691 1692
```

1693
### commit<sup>8+</sup>
W
wuyongning 已提交
1694 1695 1696 1697 1698

commit():void

提交已执行的SQL语句。

L
lihuihui 已提交
1699
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1700

P
PaDaBoo 已提交
1701
**示例:**
1702

G
ge-yafang 已提交
1703
```js
L
add  
ltdong 已提交
1704
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
1705
let context = featureAbility.getContext()
L
add  
ltdong 已提交
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
const STORE_CONFIG = { name: "RdbTest.db"}
data_rdb.getRdbStore(context, STORE_CONFIG, 1, async function (err, rdbStore) {
    rdbStore.beginTransaction()
	const valueBucket = {
		"name": "lisi",
		"age": 18,
		"salary": 100.5,
		"blobType": new Uint8Array([1, 2, 3]),
	}
	await rdbStore.insert("test", valueBucket)
	rdbStore.commit()
})
W
wuyongning 已提交
1718 1719
```

1720
### rollBack<sup>8+</sup>
W
wuyongning 已提交
1721

1722
rollBack():void
W
wuyongning 已提交
1723 1724 1725

回滚已经执行的SQL语句。

L
lihuihui 已提交
1726
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1727

P
PaDaBoo 已提交
1728
**示例:**
1729

G
ge-yafang 已提交
1730
```js
L
add  
ltdong 已提交
1731
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
1732
let context = featureAbility.getContext()
L
add  
ltdong 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
const STORE_CONFIG = { name: "RdbTest.db"}
data_rdb.getRdbStore(context, STORE_CONFIG, 1, async function (err, rdbStore) {
    try {
		rdbStore.beginTransaction()
		const valueBucket = {
			"id": 1,
			"name": "lisi",
			"age": 18,
			"salary": 100.5,
			"blobType": new Uint8Array([1, 2, 3]),
		}
		await rdbStore.insert("test", valueBucket)
		rdbStore.commit()
	} catch (e) {
		rdbStore.rollBack()
	}
})
W
wuyongning 已提交
1750 1751
```

1752
### setDistributedTables<sup>8+</sup>
S
sun-dou 已提交
1753

W
wuyongning 已提交
1754
setDistributedTables(tables: Array&lt;string&gt;, callback: AsyncCallback&lt;void&gt;): void
S
sun-dou 已提交
1755

W
wangxiyue 已提交
1756
设置分布式列表,使用callback异步回调。
S
sun-dou 已提交
1757

W
wuyongning 已提交
1758 1759
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1760
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1761

P
PaDaBoo 已提交
1762
**参数:**
1763

Z
zengyawen 已提交
1764 1765 1766 1767
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| tables | Array&lt;string&gt; | 是 | 要设置的分布式列表表名 |
| callback | AsyncCallback&lt;void&gt; | 是 | 指定callback回调函数。 |
S
sun-dou 已提交
1768

P
PaDaBoo 已提交
1769
**示例:**
1770

P
PaDaBoo 已提交
1771 1772 1773
```js
rdbStore.setDistributedTables(["EMPLOYEE"], function (err) {
    if (err) {
W
wuyongning 已提交
1774
        console.info('SetDistributedTables failed, err: ' + err)
P
PaDaBoo 已提交
1775 1776
        return
    }
W
wuyongning 已提交
1777
    console.info('SetDistributedTables successfully.')
P
PaDaBoo 已提交
1778
})
1779
```
S
sun-dou 已提交
1780

1781
### setDistributedTables<sup>8+</sup>
S
sun-dou 已提交
1782

W
wuyongning 已提交
1783
 setDistributedTables(tables: Array&lt;string&gt;): Promise&lt;void&gt;
S
sun-dou 已提交
1784

W
wangxiyue 已提交
1785
设置分布式列表,使用Promise异步回调。
S
sun-dou 已提交
1786

W
wuyongning 已提交
1787 1788
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1789
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1790

P
PaDaBoo 已提交
1791
**参数:**
1792

Z
zengyawen 已提交
1793 1794 1795
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| tables | Array&lt;string&gt; | 是 | 要设置的分布式列表表名。 |
S
sun-dou 已提交
1796

Z
zengyawen 已提交
1797
**返回值**
1798

Z
zengyawen 已提交
1799 1800
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1801
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
S
sun-dou 已提交
1802

P
PaDaBoo 已提交
1803
**示例:**
1804

P
PaDaBoo 已提交
1805 1806 1807
```js
let promise = rdbStore.setDistributedTables(["EMPLOYEE"])
promise.then(() => {
W
wuyongning 已提交
1808
    console.info("SetDistributedTables successfully.")
P
PaDaBoo 已提交
1809
}).catch((err) => {
W
wuyongning 已提交
1810
    console.info("SetDistributedTables failed, err: " + err)
P
PaDaBoo 已提交
1811 1812
})
```
S
sun-dou 已提交
1813

1814
### obtainDistributedTableName<sup>8+</sup>
S
sun-dou 已提交
1815

W
wuyongning 已提交
1816
obtainDistributedTableName(device: string, table: string, callback: AsyncCallback&lt;string&gt;): void
S
sun-dou 已提交
1817

W
wangxiyue 已提交
1818
根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名, 使用callback异步回调。
S
sun-dou 已提交
1819

W
wuyongning 已提交
1820 1821
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1822
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1823

P
PaDaBoo 已提交
1824
**参数:**
1825

Z
zengyawen 已提交
1826 1827 1828 1829 1830
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| device | string | 是 | 远程设备 。|
| table | string | 是 | 本地表名。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 指定的callback回调函数。如果操作成功,返回远程设备的分布式表名。 |
S
sun-dou 已提交
1831

P
PaDaBoo 已提交
1832
**示例:**
1833

P
PaDaBoo 已提交
1834
```js
W
wuyongning 已提交
1835
rdbStore.obtainDistributedTableName("12345678abcde", "EMPLOYEE", function (err, tableName) {
P
PaDaBoo 已提交
1836
    if (err) {
W
wuyongning 已提交
1837
        console.info('ObtainDistributedTableName failed, err: ' + err)
P
PaDaBoo 已提交
1838 1839
        return
    }
W
wuyongning 已提交
1840
    console.info('ObtainDistributedTableName successfully, tableName=.' + tableName)
P
PaDaBoo 已提交
1841 1842
})
```
S
sun-dou 已提交
1843

1844
### obtainDistributedTableName<sup>8+</sup>
S
sun-dou 已提交
1845

W
wuyongning 已提交
1846
 obtainDistributedTableName(device: string, table: string): Promise&lt;string&gt;
S
sun-dou 已提交
1847

W
wangxiyue 已提交
1848
根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名,使用Promise异步回调。
S
sun-dou 已提交
1849

W
wuyongning 已提交
1850 1851
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1852
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1853

P
PaDaBoo 已提交
1854
**参数:**
1855

Z
zengyawen 已提交
1856 1857 1858 1859
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| device | string | 是 | 远程设备。 |
| table | string | 是 | 本地表名。 |
S
sun-dou 已提交
1860

Z
zengyawen 已提交
1861
**返回值**
1862

Z
zengyawen 已提交
1863 1864
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1865
| Promise&lt;string&gt; | Promise对象。如果操作成功,返回远程设备的分布式表名。 |
S
sun-dou 已提交
1866

P
PaDaBoo 已提交
1867
**示例:**
1868

P
PaDaBoo 已提交
1869
```js
W
wuyongning 已提交
1870
let promise = rdbStore.obtainDistributedTableName("12345678abcde", "EMPLOYEE")
P
PaDaBoo 已提交
1871
promise.then((tableName) => {
W
wuyongning 已提交
1872
    console.info('ObtainDistributedTableName successfully, tableName= ' + tableName)
P
PaDaBoo 已提交
1873
}).catch((err) => {
W
wuyongning 已提交
1874
    console.info('ObtainDistributedTableName failed, err: ' + err)
P
PaDaBoo 已提交
1875 1876
})
```
S
sun-dou 已提交
1877

1878
### sync<sup>8+</sup>
S
sun-dou 已提交
1879

W
wuyongning 已提交
1880
sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback&lt;Array&lt;[string, number]&gt;&gt;): void
S
sun-dou 已提交
1881

W
wangxiyue 已提交
1882
在设备之间同步数据, 使用callback异步回调。
S
sun-dou 已提交
1883

W
wuyongning 已提交
1884 1885
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1886
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1887

P
PaDaBoo 已提交
1888
**参数:**
1889

Z
zengyawen 已提交
1890 1891
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
1892
| mode | [SyncMode](#syncmode8) | 是 | 指同步模式。该值可以是推、拉。 |
Z
zengyawen 已提交
1893 1894
| predicates | [RdbPredicates](#rdbpredicates) | 是 | 约束同步数据和设备。 |
| callback | AsyncCallback&lt;Array&lt;[string, number]&gt;&gt; | 是 | 指定的callback回调函数,用于向调用者发送同步结果。string:设备ID;number:每个设备同步状态,0表示成功,其他值表示失败。|
S
sun-dou 已提交
1895

P
PaDaBoo 已提交
1896
**示例:**
1897

P
PaDaBoo 已提交
1898
```js
W
wuyongning 已提交
1899
let predicates = new data_rdb.RdbPredicates('EMPLOYEE')
P
PaDaBoo 已提交
1900
predicates.inDevices(['12345678abcde'])
W
wuyongning 已提交
1901
rdbStore.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicates, function (err, result) {
P
PaDaBoo 已提交
1902
    if (err) {
W
wuyongning 已提交
1903
        console.log('Sync failed, err: ' + err)
P
PaDaBoo 已提交
1904 1905
        return
    }
W
wuyongning 已提交
1906
    console.log('Sync done.')
P
PaDaBoo 已提交
1907 1908 1909 1910 1911
    for (let i = 0; i < result.length; i++) {
        console.log('device=' + result[i][0] + ' status=' + result[i][1])
    }
})
```
S
sun-dou 已提交
1912

1913
### sync<sup>8+</sup>
S
sun-dou 已提交
1914

W
wuyongning 已提交
1915
 sync(mode: SyncMode, predicates: RdbPredicates): Promise&lt;Array&lt;[string, number]&gt;&gt;
S
sun-dou 已提交
1916

W
wangxiyue 已提交
1917
在设备之间同步数据,使用Promise异步回调。
S
sun-dou 已提交
1918

W
wuyongning 已提交
1919 1920
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

L
lihuihui 已提交
1921
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1922

P
PaDaBoo 已提交
1923
**参数:**
1924

Z
zengyawen 已提交
1925 1926
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
1927
| mode | [SyncMode](#syncmode8) | 是 | 指同步模式。该值可以是推、拉。 |
Z
zengyawen 已提交
1928
| predicates | [RdbPredicates](#rdbpredicates) | 是 | 约束同步数据和设备。 |
S
sun-dou 已提交
1929

Z
zengyawen 已提交
1930
**返回值**
Z
zengyawen 已提交
1931 1932 1933

| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
1934
| Promise&lt;Array&lt;[string, number]&gt;&gt; | Promise对象,用于向调用者发送同步结果。string:设备ID;number:每个设备同步状态,0表示成功,其他值表示失败。 |
S
sun-dou 已提交
1935

P
PaDaBoo 已提交
1936
**示例:**
1937

P
PaDaBoo 已提交
1938 1939 1940 1941 1942
```js
let predicates = new data_rdb.RdbPredicates('EMPLOYEE')
predicates.inDevices(['12345678abcde'])
let promise = rdbStore.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicates)
promise.then((result) =>{
W
wuyongning 已提交
1943
    console.log('Sync done.')
P
PaDaBoo 已提交
1944 1945 1946 1947
    for (let i = 0; i < result.length; i++) {
        console.log('device=' + result[i][0] + ' status=' + result[i][1])
    }
}).catch((err) => {
W
wuyongning 已提交
1948
    console.log('Sync failed')
P
PaDaBoo 已提交
1949 1950
})
```
S
sun-dou 已提交
1951

1952
### on('dataChange')<sup>8+</sup>
S
sun-dou 已提交
1953

W
wuyongning 已提交
1954
on(event: 'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void
S
sun-dou 已提交
1955 1956 1957

注册数据库的观察者。当分布式数据库中的数据发生更改时,将调用回调。

L
lihuihui 已提交
1958
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1959

P
PaDaBoo 已提交
1960
**参数:**
Z
zengyawen 已提交
1961

Z
zengyawen 已提交
1962 1963 1964
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| event | string | 是 | 取值为'dataChange',表示数据更改。 |
1965
| type | [SubscribeType](#subscribetype8) | 是 | 指在{@code SubscribeType}中定义的订阅类型。 |
Z
zengyawen 已提交
1966
| observer | Callback&lt;Array&lt;string&gt;&gt; | 是 | 指分布式数据库中数据更改事件的观察者。 |
S
sun-dou 已提交
1967

P
PaDaBoo 已提交
1968
**示例:**
1969

P
PaDaBoo 已提交
1970 1971 1972 1973 1974 1975 1976 1977 1978
```js
function storeObserver(devices) {
    for (let i = 0; i < devices.length; i++) {
        console.log('device=' + devices[i] + ' data changed')
    }
}
try {
    rdbStore.on('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver)
} catch (err) {
W
wuyongning 已提交
1979
    console.log('Register observer failed')
P
PaDaBoo 已提交
1980 1981
}
```
S
sun-dou 已提交
1982

1983
### off('dataChange')<sup>8+</sup>
S
sun-dou 已提交
1984

W
wuyongning 已提交
1985
off(event:'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void
S
sun-dou 已提交
1986

W
wangxiyue 已提交
1987
从数据库中删除指定类型的指定观察者, 使用callback异步回调。
S
sun-dou 已提交
1988

L
lihuihui 已提交
1989
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
1990

P
PaDaBoo 已提交
1991
**参数:**
Z
zengyawen 已提交
1992

Z
zengyawen 已提交
1993 1994 1995
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| event | string | 是 | 取值为'dataChange',表示数据更改。 |
1996
| type | [SubscribeType](#subscribetype8)    | 是 | 指在{@code SubscribeType}中定义的订阅类型。 |
Z
zengyawen 已提交
1997
| observer | Callback&lt;Array&lt;string&gt;&gt; | 是 | 指已注册的数据更改观察者。|
S
sun-dou 已提交
1998

P
PaDaBoo 已提交
1999
**示例:**
2000

P
PaDaBoo 已提交
2001 2002 2003 2004 2005 2006 2007 2008 2009
```js
function storeObserver(devices) {
    for (let i = 0; i < devices.length; i++) {
        console.log('device=' + devices[i] + ' data changed')
    }
}
try {
    rdbStore.off('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver)
} catch (err) {
W
wuyongning 已提交
2010
    console.log('Unregister observer failed')
P
PaDaBoo 已提交
2011 2012
}
```