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

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

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

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

G
ge-yafang 已提交
10
> **说明:**
11
> 
Z
zengyawen 已提交
12
> 本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
13

Z
zengyawen 已提交
14
## 导入模块
Z
zengyawen 已提交
15

G
ge-yafang 已提交
16
```js
G
ge-yafang 已提交
17
import data_rdb from '@ohos.data.rdb';
Z
zengyawen 已提交
18 19
```

L
lihuihui 已提交
20 21 22 23 24 25 26 27 28 29 30 31
## data_rdb.getRdbStoreV9<sup>9+</sup>

getRdbStoreV9(context: Context, config: StoreConfigV9, version: number, callback: AsyncCallback&lt;RdbStoreV9&gt;): void

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

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

**参数:**

| 参数名   | 类型                                           | 必填 | 说明                                                         |
| -------- | ---------------------------------------------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
32
| context  | Context                                        | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
33
| config   | [StoreConfigV9](#storeconfigv99)               | 是   | 与此RDB存储相关的数据库配置。                                |
34
| version  | number                                         | 是   | 数据库版本。<br>目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。                                                 |
L
lihuihui 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
| callback | AsyncCallback&lt;[RdbStoreV9](#rdbstorev9)&gt; | 是   | 指定callback回调函数,返回RdbStoreV9对象。                   |

**错误码:**

以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)

| **错误码ID** | **错误信息**            |
| ------------ | ----------------------- |
| 14800010     | Invalid database  name. |
| 14800011     | Database corrupted.     |

**示例:**

FA模型示例:

```js
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用getRdbStoreV9
const STORE_CONFIGV9 = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1, function (err, rdbStoreV9) {
    if (err) {
        console.info("Get RdbStoreV9 failed, err: " + err)
        return
    }
    console.log("Get RdbStoreV9 successfully.")
})
```

Stage模型示例:

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

// 获取context后调用getRdbStoreV9
const STORE_CONFIGV9 = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1, function (err, rdbStoreV9) {
    if (err) {
        console.info("Get RdbStoreV9 failed, err: " + err)
        return
    }
    console.log("Get RdbStoreV9 successfully.")
})
```

## data_rdb.getRdbStoreV9<sup>9+</sup>

getRdbStoreV9(context: Context, config: StoreConfigV9, version: number): Promise&lt;RdbStoreV9&gt;

获得一个相关的RdbStoreV9,操作关系型数据库,用户可以根据自己的需求配置RdbStoreV9的参数,然后通过RdbStoreV9调用相关接口可以执行相关的数据操作,使用Promise异步回调。

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

**参数:**

| 参数名  | 类型                             | 必填 | 说明                                                         |
| ------- | -------------------------------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
103
| context | Context                          | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
104
| config  | [StoreConfigV9](#storeconfigv99) | 是   | 与此RDB存储相关的数据库配置。                                |
105
| version | number                           | 是   | 数据库版本。<br>目前暂不支持通过version自动识别数据库升级降级操作,只能由开发者自行维护。                                                 |
L
lihuihui 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176

**返回值**

| 类型                                      | 说明                              |
| ----------------------------------------- | --------------------------------- |
| Promise&lt;[RdbStoreV9](#rdbstorev99)&gt; | Promise对象。返回RdbStoreV9对象。 |

**错误码:**

以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)

| **错误码ID** | **错误信息**            |
| ------------ | ----------------------- |
| 14800010     | Invalid database  name. |
| 14800011     | Database corrupted.     |

**示例:**

FA模型示例:

```js
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用getRdbStoreV9
const STORE_CONFIGV9 = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
let promise = data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1);
promise.then(async (rdbStoreV9) => {
    console.log("Get RdbStoreV9 successfully.")
}).catch((err) => {
    console.log("Get RdbStoreV9 failed, err: " + err)
})
```

Stage模型示例:

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

// 获取context后调用getRdbStoreV9
const STORE_CONFIGV9 = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
let promise = data_rdb.getRdbStoreV9(context, STORE_CONFIGV9, 1);
promise.then(async (rdbStoreV9) => {
    console.log("Get RdbStoreV9 successfully.")
}).catch((err) => {
    console.log("Get RdbStoreV9 failed, err: " + err)
})
```

## data_rdb.deleteRdbStoreV9<sup>9+</sup>

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

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

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
177
| context  | Context                   | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
| name     | string                    | 是   | 数据库名称。                                                 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。                                       |

**错误码:**

以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)

| **错误码ID** | **错误信息**            |
| ------------ | ----------------------- |
| 14800010     | Invalid database  name. |

**示例:**

FA模型示例:

```js
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用deleteRdbStoreV9
data_rdb.deleteRdbStoreV9(context, "RdbTest.db", function (err) {
    if (err) {
        console.info("Delete RdbStorev9 failed, err: " + err)
        return
    }
    console.log("Delete RdbStorev9 successfully.")
})
```

Stage模型示例:

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

// 获取context后调用deleteRdbStoreV9
data_rdb.deleteRdbStoreV9(context, "RdbTest.db", function (err) {
    if (err) {
        console.info("Delete RdbStoreV9 failed, err: " + err)
        return
    }
    console.log("Delete RdbStoreV9 successfully.")
})
```

## data_rdb.deleteRdbStoreV9<sup>9+</sup>

deleteRdbStoreV9(context: Context, name: string): Promise&lt;void&gt;

使用指定的数据库文件配置删除数据库,使用Promise异步回调。

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

**参数**

| 参数名  | 类型    | 必填 | 说明                                                         |
| ------- | ------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
242
| context | Context | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
| name    | string  | 是   | 数据库名称。                                                 |

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**错误码:**

以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)

| **错误码ID** | **错误信息**            |
| ------------ | ----------------------- |
| 14800010     | Invalid database  name. |

**示例:**

FA模型示例:

```js
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()

// 获取context后调用deleteRdbStoreV9
let promise = data_rdb.deleteRdbStoreV9(context, "RdbTest.db")
promise.then(()=>{
    console.log("Delete RdbStoreV9 successfully.")
}).catch((err) => {
    console.info("Delete RdbStoreV9 failed, err: " + err)
})
```

Stage模型示例:

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

// 获取context后调用deleteRdbStoreV9
let promise = data_rdb.deleteRdbStoreV9(context, "RdbTest.db")
promise.then(()=>{
    console.log("Delete RdbStoreV9 successfully.")
}).catch((err) => {
    console.info("Delete RdbStoreV9 failed, err: " + err)
})
```

## data_rdb.getRdbStore<sup>(deprecated)</sup>
Z
zengyawen 已提交
299

W
wuyongning 已提交
300 301
getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback&lt;RdbStore&gt;): void

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

L
lihuihui 已提交
304 305 306 307 308
> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[data_rdb.getRdbStoreV9](#data_rdbgetrdbstorev99)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
309

P
PaDaBoo 已提交
310
**参数:**
W
wuyongning 已提交
311

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

P
PaDaBoo 已提交
319
**示例:**
W
wuyongning 已提交
320

321 322
FA模型示例:

W
wuyongning 已提交
323
```js
324 325
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
326
let context = featureAbility.getContext()
327 328

// 获取context后调用getRdbStore
W
wuyongning 已提交
329
const STORE_CONFIG = { name: "RdbTest.db"}
330
data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) {
P
PaDaBoo 已提交
331 332 333 334 335
    if (err) {
        console.info("Get RdbStore failed, err: " + err)
        return
    }
    console.log("Get RdbStore successfully.")
W
wuyongning 已提交
336 337 338
})
```

339 340 341 342 343
Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
L
lihuihui 已提交
344
let context
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}

// 获取context后调用getRdbStore
const STORE_CONFIG = { name: "RdbTest.db"}
data_rdb.getRdbStore(context, STORE_CONFIG, 1, function (err, rdbStore) {
    if (err) {
        console.info("Get RdbStore failed, err: " + err)
        return
    }
    console.log("Get RdbStore successfully.")
})
```
L
lihuihui 已提交
361 362

## data_rdb.getRdbStore<sup>(deprecated)</sup>
W
wuyongning 已提交
363 364 365

getRdbStore(context: Context, config: StoreConfig, version: number): Promise&lt;RdbStore&gt;

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

L
lihuihui 已提交
368 369 370 371 372
> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[data_rdb.getRdbStoreV9](#data_rdbgetrdbstorev99-1)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
373

P
PaDaBoo 已提交
374
**参数:**
W
wuyongning 已提交
375

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

**返回值**

L
lihuihui 已提交
384 385 386
| 类型                                 | 说明                            |
| ------------------------------------ | ------------------------------- |
| Promise&lt;[RdbStore](#rdbstore)&gt; | Promise对象。返回RdbStore对象。 |
W
wuyongning 已提交
387

P
PaDaBoo 已提交
388
**示例:**
W
wuyongning 已提交
389

390 391
FA模型示例:

W
wuyongning 已提交
392
```js
393 394
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
395
let context = featureAbility.getContext()
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411

// 获取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)
})
```

Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
L
lihuihui 已提交
412
let context
413 414 415 416 417 418 419
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}

// 获取context后调用getRdbStore
W
wuyongning 已提交
420
const STORE_CONFIG = { name: "RdbTest.db" }
421
let promise = data_rdb.getRdbStore(context, STORE_CONFIG, 1);
P
PaDaBoo 已提交
422 423
promise.then(async (rdbStore) => {
    console.log("Get RdbStore successfully.")
W
wuyongning 已提交
424
}).catch((err) => {
P
PaDaBoo 已提交
425
    console.log("Get RdbStore failed, err: " + err)
W
wuyongning 已提交
426 427 428
})
```

L
lihuihui 已提交
429
## data_rdb.deleteRdbStore<sup>(deprecated)</sup>
Z
zengyawen 已提交
430

W
wuyongning 已提交
431
deleteRdbStore(context: Context, name: string, callback: AsyncCallback&lt;void&gt;): void
W
wuyongning 已提交
432

W
wangxiyue 已提交
433
删除数据库,使用callback异步回调。
W
wuyongning 已提交
434

L
lihuihui 已提交
435 436 437 438 439
> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[data_rdb.deleteRdbStoreV9](#data_rdbdeleterdbstorev99)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
440

P
PaDaBoo 已提交
441
**参数:**
442

L
lihuihui 已提交
443 444
| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
445
| context  | Context                   | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
446 447
| name     | string                    | 是   | 数据库名称。                                                 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。                                       |
W
wuyongning 已提交
448

P
PaDaBoo 已提交
449
**示例:**
450 451 452

FA模型示例:

P
PaDaBoo 已提交
453
```js
454 455
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
456
let context = featureAbility.getContext()
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472

// 获取context后调用deleteRdbStore
data_rdb.deleteRdbStore(context, "RdbTest.db", function (err) {
    if (err) {
        console.info("Delete RdbStore failed, err: " + err)
        return
    }
    console.log("Delete RdbStore successfully.")
})
```

Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
L
lihuihui 已提交
473
let context
474 475 476 477 478 479 480 481
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}

// 获取context后调用deleteRdbStore
data_rdb.deleteRdbStore(context, "RdbTest.db", function (err) {
P
PaDaBoo 已提交
482 483 484 485 486 487 488
    if (err) {
        console.info("Delete RdbStore failed, err: " + err)
        return
    }
    console.log("Delete RdbStore successfully.")
})
```
W
wuyongning 已提交
489

L
lihuihui 已提交
490
## data_rdb.deleteRdbStore<sup>(deprecated)</sup>
W
wuyongning 已提交
491

W
wuyongning 已提交
492
deleteRdbStore(context: Context, name: string): Promise&lt;void&gt;
Z
zengyawen 已提交
493

W
wangxiyue 已提交
494
使用指定的数据库文件配置删除数据库,使用Promise异步回调。
Z
zengyawen 已提交
495

L
lihuihui 已提交
496 497 498 499 500
> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[data_rdb.deleteRdbStoreV9](#data_rdbdeleterdbstorev99-1)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
501

Z
zengyawen 已提交
502
**参数**
503

L
lihuihui 已提交
504 505
| 参数名  | 类型    | 必填 | 说明                                                         |
| ------- | ------- | ---- | ------------------------------------------------------------ |
Z
zhongjianfei 已提交
506
| context | Context | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-ability-context.md)。 |
L
lihuihui 已提交
507
| name    | string  | 是   | 数据库名称。                                                 |
Z
zengyawen 已提交
508

Z
zengyawen 已提交
509
**返回值**
510

L
lihuihui 已提交
511 512 513
| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
zengyawen 已提交
514

P
PaDaBoo 已提交
515
**示例:**
516 517 518

FA模型示例:

P
PaDaBoo 已提交
519
```js
520 521
// 获取context
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
522
let context = featureAbility.getContext()
523 524 525

// 获取context后调用deleteRdbStore
let promise = data_rdb.deleteRdbStore(context, "RdbTest.db")
L
lihuihui 已提交
526
promise.then(() => {
P
PaDaBoo 已提交
527 528 529 530 531
    console.log("Delete RdbStore successfully.")
}).catch((err) => {
    console.info("Delete RdbStore failed, err: " + err)
})
```
Z
zengyawen 已提交
532

533 534 535 536 537
Stage模型示例:

```ts
// 获取context
import Ability from '@ohos.application.Ability'
L
lihuihui 已提交
538
let context
539 540 541 542 543 544 545 546 547 548 549 550 551 552
class MainAbility extends Ability{
    onWindowStageCreate(windowStage){
        context = this.context
    }
}

// 获取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)
})
```
Z
zengyawen 已提交
553

L
lihuihui 已提交
554
## RdbPredicatesV9<sup>9+</sup>
Z
zengyawen 已提交
555 556 557 558

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


L
lihuihui 已提交
559
### constructor<sup>9+</sup>
Z
zengyawen 已提交
560 561 562

constructor(name: string)

Z
zengyawen 已提交
563 564 565

构造函数。

L
lihuihui 已提交
566
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
567

P
PaDaBoo 已提交
568
**参数:**
569

L
lihuihui 已提交
570 571 572
| 参数名 | 类型   | 必填 | 说明         |
| ------ | ------ | ---- | ------------ |
| name   | string | 是   | 数据库表名。 |
Z
zengyawen 已提交
573

P
PaDaBoo 已提交
574
**示例:**
575

P
PaDaBoo 已提交
576
```js
L
lihuihui 已提交
577
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
P
PaDaBoo 已提交
578
```
Z
zengyawen 已提交
579

L
lihuihui 已提交
580
### inDevices<sup>9+</sup>
S
sun-dou 已提交
581

L
lihuihui 已提交
582
inDevices(devices: Array&lt;string&gt;): RdbPredicatesV9
S
sun-dou 已提交
583 584


585
同步分布式数据库时连接到组网内指定的远程设备。
S
sun-dou 已提交
586

L
lihuihui 已提交
587
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
S
sun-dou 已提交
588

P
PaDaBoo 已提交
589
**参数:**
590

L
lihuihui 已提交
591 592 593
| 参数名  | 类型                | 必填 | 说明                       |
| ------- | ------------------- | ---- | -------------------------- |
| devices | Array&lt;string&gt; | 是   | 指定的组网内的远程设备ID。 |
S
sun-dou 已提交
594

Z
zengyawen 已提交
595
**返回值**
596

L
lihuihui 已提交
597 598 599
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
S
sun-dou 已提交
600

P
PaDaBoo 已提交
601
**示例:**
602

P
PaDaBoo 已提交
603
```js
L
lihuihui 已提交
604 605
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.inDevices(['12345678abcde'])
P
PaDaBoo 已提交
606
```
S
sun-dou 已提交
607

L
lihuihui 已提交
608
### inAllDevices<sup>9+</sup>
S
sun-dou 已提交
609

L
lihuihui 已提交
610
inAllDevices(): RdbPredicatesV9
S
sun-dou 已提交
611 612


613
同步分布式数据库时连接到组网内所有的远程设备。
S
sun-dou 已提交
614

L
lihuihui 已提交
615
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
S
sun-dou 已提交
616

Z
zengyawen 已提交
617
**返回值**
618

L
lihuihui 已提交
619 620 621
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesv9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
S
sun-dou 已提交
622

P
PaDaBoo 已提交
623
**示例:**
624

P
PaDaBoo 已提交
625
```js
L
lihuihui 已提交
626 627
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.inAllDevices()
P
PaDaBoo 已提交
628
```
Z
zengyawen 已提交
629

L
lihuihui 已提交
630
### equalTo<sup>9+</sup>
Z
zengyawen 已提交
631

L
lihuihui 已提交
632
equalTo(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
633

Z
zengyawen 已提交
634 635 636

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

L
lihuihui 已提交
637
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
638

P
PaDaBoo 已提交
639
**参数:**
640

L
lihuihui 已提交
641 642 643 644
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
645

Z
zengyawen 已提交
646
**返回值**
647

L
lihuihui 已提交
648 649 650
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
651

P
PaDaBoo 已提交
652
**示例:**
653

P
PaDaBoo 已提交
654
```js
L
lihuihui 已提交
655 656
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "lisi")
P
PaDaBoo 已提交
657
```
Z
zengyawen 已提交
658 659


L
lihuihui 已提交
660
### notEqualTo<sup>9+</sup>
Z
zengyawen 已提交
661

L
lihuihui 已提交
662
notEqualTo(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
663

Z
zengyawen 已提交
664 665 666

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

L
lihuihui 已提交
667
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
668

P
PaDaBoo 已提交
669
**参数:**
670

L
lihuihui 已提交
671 672 673 674
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
675

Z
zengyawen 已提交
676
**返回值**
677

L
lihuihui 已提交
678 679 680
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
681

P
PaDaBoo 已提交
682
**示例:**
683

P
PaDaBoo 已提交
684
```js
L
lihuihui 已提交
685 686
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.notEqualTo("NAME", "lisi")
P
PaDaBoo 已提交
687
```
Z
zengyawen 已提交
688 689


L
lihuihui 已提交
690
### beginWrap<sup>9+</sup>
Z
zengyawen 已提交
691

L
lihuihui 已提交
692
beginWrap(): RdbPredicatesV9
Z
zengyawen 已提交
693

Z
zengyawen 已提交
694 695 696

向谓词添加左括号。

L
lihuihui 已提交
697
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
698

Z
zengyawen 已提交
699
**返回值**
700

L
lihuihui 已提交
701 702 703
| 类型                                 | 说明                      |
| ------------------------------------ | ------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回带有左括号的Rdb谓词。 |
Z
zengyawen 已提交
704

P
PaDaBoo 已提交
705
**示例:**
706

P
PaDaBoo 已提交
707
```js
L
lihuihui 已提交
708 709
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "lisi")
P
PaDaBoo 已提交
710 711 712 713 714 715
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```
Z
zengyawen 已提交
716

L
lihuihui 已提交
717
### endWrap<sup>9+</sup>
Z
zengyawen 已提交
718

L
lihuihui 已提交
719
endWrap(): RdbPredicatesV9
Z
zengyawen 已提交
720 721 722

向谓词添加右括号。

L
lihuihui 已提交
723
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
724

Z
zengyawen 已提交
725
**返回值**
726

L
lihuihui 已提交
727 728 729
| 类型                                 | 说明                      |
| ------------------------------------ | ------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回带有右括号的Rdb谓词。 |
Z
zengyawen 已提交
730

P
PaDaBoo 已提交
731
**示例:**
732

P
PaDaBoo 已提交
733
```js
L
lihuihui 已提交
734 735
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "lisi")
P
PaDaBoo 已提交
736 737 738 739 740 741
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```
Z
zengyawen 已提交
742

L
lihuihui 已提交
743
### or<sup>9+</sup>
Z
zengyawen 已提交
744

L
lihuihui 已提交
745
or(): RdbPredicatesV9
Z
zengyawen 已提交
746 747 748

将或条件添加到谓词中。

L
lihuihui 已提交
749
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
750

Z
zengyawen 已提交
751
**返回值**
752

L
lihuihui 已提交
753 754 755
| 类型                                 | 说明                      |
| ------------------------------------ | ------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回带有或条件的Rdb谓词。 |
Z
zengyawen 已提交
756

P
PaDaBoo 已提交
757
**示例:**
758

P
PaDaBoo 已提交
759
```js
L
lihuihui 已提交
760 761
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
P
PaDaBoo 已提交
762 763 764
    .or()
    .equalTo("NAME", "Rose")
```
Z
zengyawen 已提交
765

L
lihuihui 已提交
766
### and<sup>9+</sup>
Z
zengyawen 已提交
767

L
lihuihui 已提交
768
and(): RdbPredicatesV9
Z
zengyawen 已提交
769 770 771

向谓词添加和条件。

L
lihuihui 已提交
772
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
773

Z
zengyawen 已提交
774
**返回值**
775

L
lihuihui 已提交
776 777 778
| 类型                                 | 说明                      |
| ------------------------------------ | ------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回带有和条件的Rdb谓词。 |
Z
zengyawen 已提交
779

P
PaDaBoo 已提交
780
**示例:**
781

P
PaDaBoo 已提交
782
```js
L
lihuihui 已提交
783 784
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
P
PaDaBoo 已提交
785 786 787
    .and()
    .equalTo("SALARY", 200.5)
```
Z
zengyawen 已提交
788

L
lihuihui 已提交
789
### contains<sup>9+</sup>
Z
zengyawen 已提交
790

L
lihuihui 已提交
791
contains(field: string, value: string): RdbPredicatesV9
Z
zengyawen 已提交
792

G
ge-yafang 已提交
793
配置谓词以匹配数据字段为string且value包含指定值的字段。
Z
zengyawen 已提交
794

L
lihuihui 已提交
795
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
796

P
PaDaBoo 已提交
797
**参数:**
798

L
lihuihui 已提交
799 800 801 802
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| field  | string | 是   | 数据库表中的列名。     |
| value  | string | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
803

Z
zengyawen 已提交
804
**返回值**
805

L
lihuihui 已提交
806 807 808
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
809

P
PaDaBoo 已提交
810
**示例:**
811

P
PaDaBoo 已提交
812
```js
L
lihuihui 已提交
813 814
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.contains("NAME", "os")
P
PaDaBoo 已提交
815
```
Z
zengyawen 已提交
816

L
lihuihui 已提交
817
### beginsWith<sup>9+</sup>
Z
zengyawen 已提交
818

L
lihuihui 已提交
819
beginsWith(field: string, value: string): RdbPredicatesV9
Z
zengyawen 已提交
820

G
ge-yafang 已提交
821
配置谓词以匹配数据字段为string且值以指定字符串开头的字段。
Z
zengyawen 已提交
822

L
lihuihui 已提交
823
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
824

P
PaDaBoo 已提交
825
**参数:**
826

L
lihuihui 已提交
827 828 829 830
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| field  | string | 是   | 数据库表中的列名。     |
| value  | string | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
831

Z
zengyawen 已提交
832
**返回值**
833

L
lihuihui 已提交
834 835 836
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
837

P
PaDaBoo 已提交
838
**示例:**
839

P
PaDaBoo 已提交
840
```js
L
lihuihui 已提交
841 842
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.beginsWith("NAME", "os")
P
PaDaBoo 已提交
843
```
Z
zengyawen 已提交
844

L
lihuihui 已提交
845
### endsWith<sup>9+</sup>
Z
zengyawen 已提交
846

L
lihuihui 已提交
847
endsWith(field: string, value: string): RdbPredicatesV9
Z
zengyawen 已提交
848

G
ge-yafang 已提交
849
配置谓词以匹配数据字段为string且值以指定字符串结尾的字段。
Z
zengyawen 已提交
850

L
lihuihui 已提交
851
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
852

P
PaDaBoo 已提交
853
**参数:**
854

L
lihuihui 已提交
855 856 857 858
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| field  | string | 是   | 数据库表中的列名。     |
| value  | string | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
859

Z
zengyawen 已提交
860
**返回值**
861

L
lihuihui 已提交
862 863 864
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
865

P
PaDaBoo 已提交
866
**示例:**
867

P
PaDaBoo 已提交
868
```js
L
lihuihui 已提交
869 870
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.endsWith("NAME", "se")
P
PaDaBoo 已提交
871
```
Z
zengyawen 已提交
872

L
lihuihui 已提交
873
### isNull<sup>9+</sup>
Z
zengyawen 已提交
874

L
lihuihui 已提交
875
isNull(field: string): RdbPredicatesV9
Z
zengyawen 已提交
876

Z
zengyawen 已提交
877 878
配置谓词以匹配值为null的字段。

L
lihuihui 已提交
879
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
880

P
PaDaBoo 已提交
881
**参数:**
882

L
lihuihui 已提交
883 884 885
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| field  | string | 是   | 数据库表中的列名。 |
Z
zengyawen 已提交
886

Z
zengyawen 已提交
887
**返回值**
888

L
lihuihui 已提交
889 890 891
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
892

893
**示例**
L
lihuihui 已提交
894

P
PaDaBoo 已提交
895
```js
L
lihuihui 已提交
896 897
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.isNull("NAME")
P
PaDaBoo 已提交
898
```
Z
zengyawen 已提交
899

L
lihuihui 已提交
900
### isNotNull<sup>9+</sup>
Z
zengyawen 已提交
901

L
lihuihui 已提交
902
isNotNull(field: string): RdbPredicatesV9
Z
zengyawen 已提交
903

Z
zengyawen 已提交
904 905
配置谓词以匹配值不为null的指定字段。

L
lihuihui 已提交
906
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
907

P
PaDaBoo 已提交
908
**参数:**
909

L
lihuihui 已提交
910 911 912
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| field  | string | 是   | 数据库表中的列名。 |
Z
zengyawen 已提交
913

Z
zengyawen 已提交
914
**返回值**
915

L
lihuihui 已提交
916 917 918
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
919

P
PaDaBoo 已提交
920
**示例:**
921

P
PaDaBoo 已提交
922
```js
L
lihuihui 已提交
923 924
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.isNotNull("NAME")
P
PaDaBoo 已提交
925
```
Z
zengyawen 已提交
926

L
lihuihui 已提交
927
### like<sup>9+</sup>
Z
zengyawen 已提交
928

L
lihuihui 已提交
929
like(field: string, value: string): RdbPredicatesV9
Z
zengyawen 已提交
930

G
ge-yafang 已提交
931
配置谓词以匹配数据字段为string且值类似于指定字符串的字段。
Z
zengyawen 已提交
932

L
lihuihui 已提交
933
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
934

P
PaDaBoo 已提交
935
**参数:**
936

L
lihuihui 已提交
937 938 939 940
| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| field  | string | 是   | 数据库表中的列名。     |
| value  | string | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
941

Z
zengyawen 已提交
942
**返回值**
943

L
lihuihui 已提交
944 945 946
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
947

P
PaDaBoo 已提交
948
**示例:**
949

P
PaDaBoo 已提交
950
```js
L
lihuihui 已提交
951 952
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.like("NAME", "%os%")
P
PaDaBoo 已提交
953
```
Z
zengyawen 已提交
954

L
lihuihui 已提交
955
### glob<sup>9+</sup>
Z
zengyawen 已提交
956

L
lihuihui 已提交
957
glob(field: string, value: string): RdbPredicatesV9
Z
zengyawen 已提交
958

L
lihuihui 已提交
959
配置RdbPredicatesV9匹配数据字段为string的指定字段。
Z
zengyawen 已提交
960

L
lihuihui 已提交
961
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
962

P
PaDaBoo 已提交
963
**参数:**
964

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

Z
zengyawen 已提交
970
**返回值**
971

L
lihuihui 已提交
972 973 974
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
975

P
PaDaBoo 已提交
976
**示例:**
977

P
PaDaBoo 已提交
978
```js
L
lihuihui 已提交
979 980
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.glob("NAME", "?h*g")
P
PaDaBoo 已提交
981
```
Z
zengyawen 已提交
982

L
lihuihui 已提交
983
### between<sup>9+</sup>
Z
zengyawen 已提交
984

L
lihuihui 已提交
985
between(field: string, low: ValueType, high: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
986

Z
zengyawen 已提交
987 988
将谓词配置为匹配数据字段为ValueType且value在给定范围内的指定字段。

L
lihuihui 已提交
989
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
990

P
PaDaBoo 已提交
991
**参数:**
992

L
lihuihui 已提交
993 994 995 996 997
| 参数名 | 类型                    | 必填 | 说明                       |
| ------ | ----------------------- | ---- | -------------------------- |
| field  | string                  | 是   | 数据库表中的列名。         |
| low    | [ValueType](#valuetype) | 是   | 指示与谓词匹配的最小值。   |
| high   | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的最大值。 |
Z
zengyawen 已提交
998

Z
zengyawen 已提交
999
**返回值**
1000

L
lihuihui 已提交
1001 1002 1003
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1004

P
PaDaBoo 已提交
1005
**示例:**
1006

P
PaDaBoo 已提交
1007
```js
L
lihuihui 已提交
1008 1009
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.between("AGE", 10, 50)
P
PaDaBoo 已提交
1010
```
Z
zengyawen 已提交
1011

L
lihuihui 已提交
1012
### notBetween<sup>9+</sup>
Z
zengyawen 已提交
1013

L
lihuihui 已提交
1014
notBetween(field: string, low: ValueType, high: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
1015

L
lihuihui 已提交
1016
配置RdbPredicatesV9以匹配数据字段为ValueType且value超出给定范围的指定字段。
Z
zengyawen 已提交
1017

L
lihuihui 已提交
1018
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1019

P
PaDaBoo 已提交
1020
**参数:**
1021

L
lihuihui 已提交
1022 1023 1024 1025 1026
| 参数名 | 类型                    | 必填 | 说明                       |
| ------ | ----------------------- | ---- | -------------------------- |
| field  | string                  | 是   | 数据库表中的列名。         |
| low    | [ValueType](#valuetype) | 是   | 指示与谓词匹配的最小值。   |
| high   | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的最大值。 |
Z
zengyawen 已提交
1027

Z
zengyawen 已提交
1028
**返回值**
1029

L
lihuihui 已提交
1030 1031 1032
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1033

P
PaDaBoo 已提交
1034
**示例:**
1035

P
PaDaBoo 已提交
1036
```js
L
lihuihui 已提交
1037 1038
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.notBetween("AGE", 10, 50)
P
PaDaBoo 已提交
1039
```
Z
zengyawen 已提交
1040

L
lihuihui 已提交
1041
### greaterThan<sup>9+</sup>
Z
zengyawen 已提交
1042

L
lihuihui 已提交
1043
greaterThan(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
1044 1045 1046

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

L
lihuihui 已提交
1047
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1048

P
PaDaBoo 已提交
1049
**参数:**
1050

L
lihuihui 已提交
1051 1052 1053 1054
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
1055

Z
zengyawen 已提交
1056
**返回值**
1057

L
lihuihui 已提交
1058 1059 1060
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1061

P
PaDaBoo 已提交
1062
**示例:**
1063

P
PaDaBoo 已提交
1064
```js
L
lihuihui 已提交
1065 1066
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.greaterThan("AGE", 18)
P
PaDaBoo 已提交
1067
```
Z
zengyawen 已提交
1068

L
lihuihui 已提交
1069
### lessThan<sup>9+</sup>
Z
zengyawen 已提交
1070

L
lihuihui 已提交
1071
lessThan(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
1072

Z
zengyawen 已提交
1073 1074
配置谓词以匹配数据字段为valueType且value小于指定值的字段。

L
lihuihui 已提交
1075
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1076

P
PaDaBoo 已提交
1077
**参数:**
1078

L
lihuihui 已提交
1079 1080 1081 1082
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
1083

Z
zengyawen 已提交
1084
**返回值**
1085

L
lihuihui 已提交
1086 1087 1088
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1089

P
PaDaBoo 已提交
1090
**示例:**
1091

P
PaDaBoo 已提交
1092
```js
L
lihuihui 已提交
1093 1094
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.lessThan("AGE", 20)
P
PaDaBoo 已提交
1095
```
Z
zengyawen 已提交
1096

L
lihuihui 已提交
1097
### greaterThanOrEqualTo<sup>9+</sup>
Z
zengyawen 已提交
1098

L
lihuihui 已提交
1099
greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
1100

Z
zengyawen 已提交
1101 1102
配置谓词以匹配数据字段为ValueType且value大于或等于指定值的字段。

L
lihuihui 已提交
1103
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1104

P
PaDaBoo 已提交
1105
**参数:**
1106

L
lihuihui 已提交
1107 1108 1109 1110
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
1111

Z
zengyawen 已提交
1112
**返回值**
1113

L
lihuihui 已提交
1114 1115 1116
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1117

P
PaDaBoo 已提交
1118
**示例:**
1119

P
PaDaBoo 已提交
1120
```js
L
lihuihui 已提交
1121 1122
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.greaterThanOrEqualTo("AGE", 18)
P
PaDaBoo 已提交
1123
```
Z
zengyawen 已提交
1124

L
lihuihui 已提交
1125
### lessThanOrEqualTo<sup>9+</sup>
Z
zengyawen 已提交
1126

L
lihuihui 已提交
1127
lessThanOrEqualTo(field: string, value: ValueType): RdbPredicatesV9
Z
zengyawen 已提交
1128

Z
zengyawen 已提交
1129 1130
配置谓词以匹配数据字段为ValueType且value小于或等于指定值的字段。

L
lihuihui 已提交
1131
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1132

P
PaDaBoo 已提交
1133
**参数:**
1134

L
lihuihui 已提交
1135 1136 1137 1138
| 参数名 | 类型                    | 必填 | 说明                   |
| ------ | ----------------------- | ---- | ---------------------- |
| field  | string                  | 是   | 数据库表中的列名。     |
| value  | [ValueType](#valuetype) | 是   | 指示要与谓词匹配的值。 |
Z
zengyawen 已提交
1139

Z
zengyawen 已提交
1140
**返回值**
1141

L
lihuihui 已提交
1142 1143 1144
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1145

P
PaDaBoo 已提交
1146
**示例:**
1147

P
PaDaBoo 已提交
1148
```js
L
lihuihui 已提交
1149 1150
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.lessThanOrEqualTo("AGE", 20)
P
PaDaBoo 已提交
1151
```
Z
zengyawen 已提交
1152

L
lihuihui 已提交
1153
### orderByAsc<sup>9+</sup>
Z
zengyawen 已提交
1154

L
lihuihui 已提交
1155
orderByAsc(field: string): RdbPredicatesV9
Z
zengyawen 已提交
1156

Z
zengyawen 已提交
1157 1158
配置谓词以匹配其值按升序排序的列。

L
lihuihui 已提交
1159
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1160

P
PaDaBoo 已提交
1161
**参数:**
1162

L
lihuihui 已提交
1163 1164 1165
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| field  | string | 是   | 数据库表中的列名。 |
Z
zengyawen 已提交
1166

Z
zengyawen 已提交
1167
**返回值**
1168

L
lihuihui 已提交
1169 1170 1171
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1172

P
PaDaBoo 已提交
1173
**示例:**
1174

P
PaDaBoo 已提交
1175
```js
L
lihuihui 已提交
1176 1177
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.orderByAsc("NAME")
P
PaDaBoo 已提交
1178
```
Z
zengyawen 已提交
1179

L
lihuihui 已提交
1180
### orderByDesc<sup>9+</sup>
Z
zengyawen 已提交
1181

L
lihuihui 已提交
1182
orderByDesc(field: string): RdbPredicatesV9
Z
zengyawen 已提交
1183

Z
zengyawen 已提交
1184 1185
配置谓词以匹配其值按降序排序的列。

L
lihuihui 已提交
1186
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1187

P
PaDaBoo 已提交
1188
**参数:**
1189

L
lihuihui 已提交
1190 1191 1192
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| field  | string | 是   | 数据库表中的列名。 |
Z
zengyawen 已提交
1193

Z
zengyawen 已提交
1194
**返回值**
1195

L
lihuihui 已提交
1196 1197 1198
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1199

P
PaDaBoo 已提交
1200
**示例:**
1201

P
PaDaBoo 已提交
1202
```js
L
lihuihui 已提交
1203 1204
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.orderByDesc("AGE")
P
PaDaBoo 已提交
1205
```
Z
zengyawen 已提交
1206

L
lihuihui 已提交
1207
### distinct<sup>9+</sup>
Z
zengyawen 已提交
1208

L
lihuihui 已提交
1209
distinct(): RdbPredicatesV9
Z
zengyawen 已提交
1210

Z
zengyawen 已提交
1211 1212
配置谓词以过滤重复记录并仅保留其中一个。

L
lihuihui 已提交
1213
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1214

Z
zengyawen 已提交
1215
**返回值**
1216

L
lihuihui 已提交
1217 1218 1219
| 类型                                 | 说明                           |
| ------------------------------------ | ------------------------------ |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回可用于过滤重复记录的谓词。 |
Z
zengyawen 已提交
1220

P
PaDaBoo 已提交
1221
**示例:**
1222

P
PaDaBoo 已提交
1223
```js
L
lihuihui 已提交
1224 1225
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Rose").distinct()
P
PaDaBoo 已提交
1226
```
Z
zengyawen 已提交
1227

L
lihuihui 已提交
1228
### limitAs<sup>9+</sup>
Z
zengyawen 已提交
1229

L
lihuihui 已提交
1230
limitAs(value: number): RdbPredicatesV9
Z
zengyawen 已提交
1231 1232 1233

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

L
lihuihui 已提交
1234
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1235

P
PaDaBoo 已提交
1236
**参数:**
1237

L
lihuihui 已提交
1238 1239 1240
| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| value  | number | 是   | 最大数据记录数。 |
Z
zengyawen 已提交
1241

Z
zengyawen 已提交
1242
**返回值**
1243

L
lihuihui 已提交
1244 1245 1246
| 类型                                 | 说明                                 |
| ------------------------------------ | ------------------------------------ |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回可用于设置最大数据记录数的谓词。 |
Z
zengyawen 已提交
1247

P
PaDaBoo 已提交
1248
**示例:**
1249

P
PaDaBoo 已提交
1250
```js
L
lihuihui 已提交
1251 1252
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Rose").limitAs(3)
P
PaDaBoo 已提交
1253
```
Z
zengyawen 已提交
1254

L
lihuihui 已提交
1255
### offsetAs<sup>9+</sup>
Z
zengyawen 已提交
1256

L
lihuihui 已提交
1257
offsetAs(rowOffset: number): RdbPredicatesV9
Z
zengyawen 已提交
1258

L
lihuihui 已提交
1259
配置RdbPredicatesV9以指定返回结果的起始位置。
Z
zengyawen 已提交
1260

L
lihuihui 已提交
1261
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1262

P
PaDaBoo 已提交
1263
**参数:**
1264

L
lihuihui 已提交
1265 1266 1267
| 参数名    | 类型   | 必填 | 说明                               |
| --------- | ------ | ---- | ---------------------------------- |
| rowOffset | number | 是   | 返回结果的起始位置,取值为正整数。 |
Z
zengyawen 已提交
1268

Z
zengyawen 已提交
1269
**返回值**
1270

L
lihuihui 已提交
1271 1272 1273
| 类型                                 | 说明                                 |
| ------------------------------------ | ------------------------------------ |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回具有指定返回结果起始位置的谓词。 |
Z
zengyawen 已提交
1274

P
PaDaBoo 已提交
1275
**示例:**
1276

P
PaDaBoo 已提交
1277
```js
L
lihuihui 已提交
1278 1279
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Rose").offsetAs(3)
P
PaDaBoo 已提交
1280
```
Z
zengyawen 已提交
1281

L
lihuihui 已提交
1282
### groupBy<sup>9+</sup>
Z
zengyawen 已提交
1283

L
lihuihui 已提交
1284
groupBy(fields: Array&lt;string&gt;): RdbPredicatesV9
Z
zengyawen 已提交
1285

L
lihuihui 已提交
1286
配置RdbPredicatesV9按指定列分组查询结果。
Z
zengyawen 已提交
1287

L
lihuihui 已提交
1288
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1289

P
PaDaBoo 已提交
1290
**参数:**
1291

L
lihuihui 已提交
1292 1293 1294
| 参数名 | 类型                | 必填 | 说明                 |
| ------ | ------------------- | ---- | -------------------- |
| fields | Array&lt;string&gt; | 是   | 指定分组依赖的列名。 |
Z
zengyawen 已提交
1295

Z
zengyawen 已提交
1296
**返回值**
1297

L
lihuihui 已提交
1298 1299 1300
| 类型                                 | 说明                   |
| ------------------------------------ | ---------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回分组查询列的谓词。 |
Z
zengyawen 已提交
1301

P
PaDaBoo 已提交
1302
**示例:**
1303

P
PaDaBoo 已提交
1304
```js
L
lihuihui 已提交
1305 1306
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.groupBy(["AGE", "NAME"])
P
PaDaBoo 已提交
1307
```
Z
zengyawen 已提交
1308

L
lihuihui 已提交
1309
### indexedBy<sup>9+</sup>
Z
zengyawen 已提交
1310

L
lihuihui 已提交
1311
indexedBy(field: string): RdbPredicatesV9
Z
zengyawen 已提交
1312

L
lihuihui 已提交
1313
配置RdbPredicatesV9以指定索引列。
Z
zengyawen 已提交
1314

L
lihuihui 已提交
1315
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1316

P
PaDaBoo 已提交
1317
**参数:**
1318

L
lihuihui 已提交
1319 1320 1321
| 参数名 | 类型   | 必填 | 说明           |
| ------ | ------ | ---- | -------------- |
| field  | string | 是   | 索引列的名称。 |
Z
zengyawen 已提交
1322

Z
zengyawen 已提交
1323
**返回值**
Z
zengyawen 已提交
1324

1325

L
lihuihui 已提交
1326 1327 1328
| 类型                                 | 说明                                  |
| ------------------------------------ | ------------------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回具有指定索引列的RdbPredicatesV9。 |
Z
zengyawen 已提交
1329

P
PaDaBoo 已提交
1330
**示例:**
1331

P
PaDaBoo 已提交
1332
```js
L
lihuihui 已提交
1333 1334
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.indexedBy("SALARY_INDEX")
P
PaDaBoo 已提交
1335
```
Z
zengyawen 已提交
1336

L
lihuihui 已提交
1337
### in<sup>9+</sup>
Z
zengyawen 已提交
1338

L
lihuihui 已提交
1339
in(field: string, value: Array&lt;ValueType&gt;): RdbPredicatesV9
Z
zengyawen 已提交
1340

L
lihuihui 已提交
1341
配置RdbPredicatesV9以匹配数据字段为ValueType数组且值在给定范围内的指定字段。
Z
zengyawen 已提交
1342

L
lihuihui 已提交
1343
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1344

P
PaDaBoo 已提交
1345
**参数:**
1346

L
lihuihui 已提交
1347 1348 1349 1350
| 参数名 | 类型                                 | 必填 | 说明                                    |
| ------ | ------------------------------------ | ---- | --------------------------------------- |
| field  | string                               | 是   | 数据库表中的列名。                      |
| value  | Array&lt;[ValueType](#valuetype)&gt; | 是   | 以ValueType型数组形式指定的要匹配的值。 |
Z
zengyawen 已提交
1351

Z
zengyawen 已提交
1352
**返回值**
1353

L
lihuihui 已提交
1354 1355 1356
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1357

P
PaDaBoo 已提交
1358
**示例:**
1359

P
PaDaBoo 已提交
1360
```js
L
lihuihui 已提交
1361 1362
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.in("AGE", [18, 20])
P
PaDaBoo 已提交
1363
```
Z
zengyawen 已提交
1364

L
lihuihui 已提交
1365
### notIn<sup>9+</sup>
Z
zengyawen 已提交
1366

L
lihuihui 已提交
1367
notIn(field: string, value: Array&lt;ValueType&gt;): RdbPredicatesV9
Z
zengyawen 已提交
1368

L
lihuihui 已提交
1369
将RdbPredicatesV9配置为匹配数据字段为ValueType且值超出给定范围的指定字段。
Z
zengyawen 已提交
1370

L
lihuihui 已提交
1371
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1372

P
PaDaBoo 已提交
1373
**参数:**
1374

L
lihuihui 已提交
1375 1376 1377 1378
| 参数名 | 类型                                 | 必填 | 说明                                  |
| ------ | ------------------------------------ | ---- | ------------------------------------- |
| field  | string                               | 是   | 数据库表中的列名。                    |
| value  | Array&lt;[ValueType](#valuetype)&gt; | 是   | 以ValueType数组形式指定的要匹配的值。 |
Z
zengyawen 已提交
1379

Z
zengyawen 已提交
1380
**返回值**
1381

L
lihuihui 已提交
1382 1383 1384
| 类型                                 | 说明                       |
| ------------------------------------ | -------------------------- |
| [RdbPredicatesV9](#rdbpredicatesv99) | 返回与指定字段匹配的谓词。 |
Z
zengyawen 已提交
1385

P
PaDaBoo 已提交
1386
**示例:**
1387

P
PaDaBoo 已提交
1388
```js
L
lihuihui 已提交
1389 1390
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.notIn("NAME", ["Lisa", "Rose"])
P
PaDaBoo 已提交
1391
```
Z
zengyawen 已提交
1392

L
lihuihui 已提交
1393
## RdbStoreV9<sup>9+</sup>
Z
zengyawen 已提交
1394 1395 1396

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

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

L
lihuihui 已提交
1399
### insert<sup>9+</sup>
Z
zengyawen 已提交
1400

1401
insert(table: string, values: ValuesBucket, callback: AsyncCallback&lt;number&gt;):void
Z
zengyawen 已提交
1402

W
wangxiyue 已提交
1403
向目标表中插入一行数据,使用callback异步回调。
Z
zengyawen 已提交
1404

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

P
PaDaBoo 已提交
1407
**参数:**
1408

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

P
PaDaBoo 已提交
1415
**示例:**
1416

P
PaDaBoo 已提交
1417 1418 1419 1420 1421 1422 1423
```js
const valueBucket = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
lihuihui 已提交
1424
rdbStoreV9.insert("EMPLOYEE", valueBucket, function (status, rowId) {
W
wangxiyue 已提交
1425 1426 1427
    if (status) {
        console.log("Insert is failed");
        return;
P
PaDaBoo 已提交
1428
    }
W
wangxiyue 已提交
1429
    console.log("Insert is successful, rowId = " + rowId);
P
PaDaBoo 已提交
1430 1431
})
```
Z
zengyawen 已提交
1432

L
lihuihui 已提交
1433
### insert<sup>9+</sup>
Z
zengyawen 已提交
1434

1435
insert(table: string, values: ValuesBucket):Promise&lt;number&gt;
Z
zengyawen 已提交
1436

W
wangxiyue 已提交
1437
向目标表中插入一行数据,使用Promise异步回调。
Z
zengyawen 已提交
1438

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

P
PaDaBoo 已提交
1441
**参数:**
1442

L
lihuihui 已提交
1443 1444 1445 1446
| 参数名 | 类型                          | 必填 | 说明                       |
| ------ | ----------------------------- | ---- | -------------------------- |
| table  | string                        | 是   | 指定的目标表名。           |
| values | [ValuesBucket](#valuesbucket) | 是   | 表示要插入到表中的数据行。 |
Z
zengyawen 已提交
1447

Z
zengyawen 已提交
1448
**返回值**
1449

L
lihuihui 已提交
1450 1451 1452
| 类型                  | 说明                                              |
| --------------------- | ------------------------------------------------- |
| Promise&lt;number&gt; | Promise对象。如果操作成功,返回行ID;否则返回-1。 |
Z
zengyawen 已提交
1453

P
PaDaBoo 已提交
1454
**示例:**
1455

P
PaDaBoo 已提交
1456 1457 1458 1459 1460 1461 1462
```js
const valueBucket = {
    "NAME": "Lisa",
    "AGE": 18,
    "SALARY": 100.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
lihuihui 已提交
1463
let promise = rdbStoreV9.insert("EMPLOYEE", valueBucket)
W
wangxiyue 已提交
1464 1465 1466 1467
promise.then((rowId) => {
    console.log("Insert is successful, rowId = " + rowId);
}).catch((status) => {
    console.log("Insert is failed");
P
PaDaBoo 已提交
1468 1469
})
```
Z
zengyawen 已提交
1470

W
wangxiyue 已提交
1471 1472 1473 1474 1475 1476
### batchInsert<sup>9+</sup>

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

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

L
lihuihui 已提交
1477
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wangxiyue 已提交
1478 1479

**参数:**
1480

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

**示例:**
1488

W
wangxiyue 已提交
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
```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])
}

L
lihuihui 已提交
1509 1510
let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
rdbStoreV9.batchInsert("EMPLOYEE", valueBuckets, function(status, insertNum) {
W
wangxiyue 已提交
1511
    if (status) {
1512
        console.log("batchInsert is failed, status = " + status);
W
wangxiyue 已提交
1513 1514
        return;
    }
1515
    console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
W
wangxiyue 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524
})
```

### batchInsert<sup>9+</sup>

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

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

L
lihuihui 已提交
1525
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wangxiyue 已提交
1526 1527

**参数:**
1528

L
lihuihui 已提交
1529 1530 1531 1532
| 参数名 | 类型                                       | 必填 | 说明                         |
| ------ | ------------------------------------------ | ---- | ---------------------------- |
| table  | string                                     | 是   | 指定的目标表名。             |
| values | Array&lt;[ValuesBucket](#valuesbucket)&gt; | 是   | 表示要插入到表中的一组数据。 |
W
wangxiyue 已提交
1533 1534

**返回值**
1535

L
lihuihui 已提交
1536 1537 1538
| 类型                  | 说明                                                        |
| --------------------- | ----------------------------------------------------------- |
| Promise&lt;number&gt; | Promise对象。如果操作成功,返回插入的数据个数,否则返回-1。 |
W
wangxiyue 已提交
1539 1540

**示例:**
1541

W
wangxiyue 已提交
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
```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])
}

L
lihuihui 已提交
1562 1563
let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
let promise = rdbStoreV9.batchInsert("EMPLOYEE", valueBuckets);
W
wangxiyue 已提交
1564
promise.then((insertNum) => {
1565
    console.log("batchInsert is successful, the number of values that were inserted = " + insertNum);
W
wangxiyue 已提交
1566
}).catch((status) => {
1567
    console.log("batchInsert is failed, status = " + status);
W
wangxiyue 已提交
1568 1569
})
```
Z
zengyawen 已提交
1570

L
lihuihui 已提交
1571
### update<sup>9+</sup>
Z
zengyawen 已提交
1572

L
lihuihui 已提交
1573
update(values: ValuesBucket, predicates: RdbPredicatesV9, callback: AsyncCallback&lt;number&gt;):void
Z
zengyawen 已提交
1574

L
lihuihui 已提交
1575
根据RdbPredicatesV9的指定实例对象更新数据库中的数据,使用callback异步回调。
Z
zengyawen 已提交
1576

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

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

L
lihuihui 已提交
1581 1582 1583 1584 1585
| 参数名     | 类型                                 | 必填 | 说明                                                         |
| ---------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| values     | [ValuesBucket](#valuesbucket)        | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | RdbPredicatesV9的实例对象指定的更新条件。                    |
| callback   | AsyncCallback&lt;number&gt;          | 是   | 指定的callback回调方法。返回受影响的行数。                   |
Z
zengyawen 已提交
1586

P
PaDaBoo 已提交
1587
**示例:**
1588

P
PaDaBoo 已提交
1589 1590 1591 1592 1593 1594 1595
```js
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
lihuihui 已提交
1596 1597 1598
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
rdbStoreV9.update(valueBucket, predicatesV9, function (err, ret) {
P
PaDaBoo 已提交
1599 1600 1601 1602 1603 1604 1605
    if (err) {
        console.info("Updated failed, err: " + err)
        return
    }
    console.log("Updated row count: " + ret)
})
```
Z
zengyawen 已提交
1606

L
lihuihui 已提交
1607
### update<sup>9+</sup>
Z
zengyawen 已提交
1608

L
lihuihui 已提交
1609
update(values: ValuesBucket, predicates: RdbPredicatesV9):Promise&lt;number&gt;
Z
zengyawen 已提交
1610

L
lihuihui 已提交
1611
根据RdbPredicatesV9的指定实例对象更新数据库中的数据,使用Promise异步回调。
Z
zengyawen 已提交
1612

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

P
PaDaBoo 已提交
1615
**参数:**
1616

L
lihuihui 已提交
1617 1618 1619 1620
| 参数名       | 类型                                 | 必填 | 说明                                                         |
| ------------ | ------------------------------------ | ---- | ------------------------------------------------------------ |
| values       | [ValuesBucket](#valuesbucket)        | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
| predicatesV9 | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | RdbPredicatesV9的实例对象指定的更新条件。                    |
Z
zengyawen 已提交
1621

Z
zengyawen 已提交
1622
**返回值**
1623

L
lihuihui 已提交
1624 1625
| 类型                  | 说明                                      |
| --------------------- | ----------------------------------------- |
Z
zengyawen 已提交
1626
| Promise&lt;number&gt; | 指定的Promise回调方法。返回受影响的行数。 |
Z
zengyawen 已提交
1627

P
PaDaBoo 已提交
1628
**示例:**
1629

P
PaDaBoo 已提交
1630 1631 1632 1633 1634 1635 1636
```js
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
lihuihui 已提交
1637 1638 1639
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
let promise = rdbStoreV9.update(valueBucket, predicatesV9)
P
PaDaBoo 已提交
1640 1641 1642 1643 1644 1645
promise.then(async (ret) => {
    console.log("Updated row count: " + ret)
}).catch((err) => {
    console.info("Updated failed, err: " + err)
})
```
Z
zengyawen 已提交
1646

1647
### update<sup>9+</sup>
L
lihuihui 已提交
1648

L
ltdong 已提交
1649
update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback&lt;number&gt;):void
1650

W
wangxiyue 已提交
1651
根据DataSharePredicates的指定实例对象更新数据库中的数据,使用callback异步回调。
1652

L
lihuihui 已提交
1653
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1654

L
lihuihui 已提交
1655 1656
**系统接口:** 此接口为系统接口。

1657
**参数:**
1658

L
lihuihui 已提交
1659 1660 1661 1662
| 参数名     | 类型                                                         | 必填 | 说明                                                         |
| ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| table      | string                                                       | 是   | 指定的目标表名。                                             |
| values     | [ValuesBucket](#valuesbucket)                                | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
1663
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的更新条件。                |
L
lihuihui 已提交
1664
| callback   | AsyncCallback&lt;number&gt;                                  | 是   | 指定的callback回调方法。返回受影响的行数。                   |
1665 1666

**示例:**
1667

1668
```js
L
ltdong 已提交
1669
import dataSharePredicates from '@ohos.data.dataSharePredicates'
1670 1671 1672 1673 1674 1675
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
ltdong 已提交
1676
let predicates = new dataSharePredicates.DataSharePredicates()
1677
predicates.equalTo("NAME", "Lisa")
L
lihuihui 已提交
1678
rdbStoreV9.update("EMPLOYEE", valueBucket, predicates, function (err, ret) {
1679 1680 1681 1682 1683 1684 1685
    if (err) {
        console.info("Updated failed, err: " + err)
        return
    }
    console.log("Updated row count: " + ret)
})
```
1686

1687 1688
### update<sup>9+</sup>

W
wuyongning 已提交
1689
update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates):Promise&lt;number&gt;
1690

W
wangxiyue 已提交
1691
根据DataSharePredicates的指定实例对象更新数据库中的数据,使用Promise异步回调。
1692

L
lihuihui 已提交
1693
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1694

L
lihuihui 已提交
1695 1696
**系统接口:** 此接口为系统接口。

1697
**参数:**
1698

L
lihuihui 已提交
1699 1700 1701 1702
| 参数名     | 类型                                                         | 必填 | 说明                                                         |
| ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| table      | string                                                       | 是   | 指定的目标表名。                                             |
| values     | [ValuesBucket](#valuesbucket)                                | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
1703
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的更新条件。                |
1704 1705

**返回值**
1706

L
lihuihui 已提交
1707 1708
| 类型                  | 说明                                      |
| --------------------- | ----------------------------------------- |
1709 1710 1711
| Promise&lt;number&gt; | 指定的Promise回调方法。返回受影响的行数。 |

**示例:**
1712

1713
```js
L
ltdong 已提交
1714
import dataSharePredicates from '@ohos.data.dataSharePredicates'
1715 1716 1717 1718 1719 1720
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
}
L
ltdong 已提交
1721
let predicates = new dataSharePredicates.DataSharePredicates()
1722
predicates.equalTo("NAME", "Lisa")
L
lihuihui 已提交
1723
let promise = rdbStoreV9.update("EMPLOYEE", valueBucket, predicates)
1724 1725 1726 1727 1728 1729
promise.then(async (ret) => {
    console.log("Updated row count: " + ret)
}).catch((err) => {
    console.info("Updated failed, err: " + err)
})
```
Z
zengyawen 已提交
1730

L
lihuihui 已提交
1731
### delete<sup>9+</sup>
Z
zengyawen 已提交
1732

L
lihuihui 已提交
1733
delete(predicates: RdbPredicatesV9, callback: AsyncCallback&lt;number&gt;):void
Z
zengyawen 已提交
1734

L
lihuihui 已提交
1735
根据RdbPredicatesV9的指定实例对象从数据库中删除数据,使用callback异步回调。
Z
zengyawen 已提交
1736

L
lihuihui 已提交
1737
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
Z
zengyawen 已提交
1738

P
PaDaBoo 已提交
1739
**参数:**
1740

L
lihuihui 已提交
1741 1742 1743 1744
| 参数名     | 类型                                 | 必填 | 说明                                      |
| ---------- | ------------------------------------ | ---- | ----------------------------------------- |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | RdbPredicatesV9的实例对象指定的删除条件。 |
| callback   | AsyncCallback&lt;number&gt;          | 是   | 指定callback回调函数。返回受影响的行数。  |
Z
zengyawen 已提交
1745

P
PaDaBoo 已提交
1746
**示例:**
1747

P
PaDaBoo 已提交
1748
```js
L
lihuihui 已提交
1749 1750 1751
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
rdbStoreV9.delete(predicatesV9, function (err, rows) {
P
PaDaBoo 已提交
1752 1753 1754 1755 1756 1757 1758
    if (err) {
        console.info("Delete failed, err: " + err)
        return
    }
    console.log("Delete rows: " + rows)
})
```
Z
zengyawen 已提交
1759

L
lihuihui 已提交
1760
### delete<sup>9+</sup>
Z
zengyawen 已提交
1761

L
lihuihui 已提交
1762
delete(predicates: RdbPredicatesV9):Promise&lt;number&gt;
Z
zengyawen 已提交
1763

L
lihuihui 已提交
1764
根据RdbPredicatesV9的指定实例对象从数据库中删除数据,使用Promise异步回调。
Z
zengyawen 已提交
1765

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

P
PaDaBoo 已提交
1768
**参数:**
1769

L
lihuihui 已提交
1770 1771 1772
| 参数名     | 类型                                 | 必填 | 说明                                      |
| ---------- | ------------------------------------ | ---- | ----------------------------------------- |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | RdbPredicatesV9的实例对象指定的删除条件。 |
Z
zengyawen 已提交
1773

Z
zengyawen 已提交
1774
**返回值**
1775

L
lihuihui 已提交
1776 1777 1778
| 类型                  | 说明                            |
| --------------------- | ------------------------------- |
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |
Z
zengyawen 已提交
1779

P
PaDaBoo 已提交
1780
**示例:**
1781

P
PaDaBoo 已提交
1782
```js
L
lihuihui 已提交
1783 1784 1785
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Lisa")
let promise = rdbStoreV9.delete(predicatesV9)
P
PaDaBoo 已提交
1786 1787 1788 1789 1790 1791
promise.then((rows) => {
    console.log("Delete rows: " + rows)
}).catch((err) => {
    console.info("Delete failed, err: " + err)
})
```
Z
zengyawen 已提交
1792

1793 1794
### delete<sup>9+</sup>

W
wuyongning 已提交
1795
delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback&lt;number&gt;):void
1796

W
wangxiyue 已提交
1797
根据DataSharePredicates的指定实例对象从数据库中删除数据,使用callback异步回调。
1798

L
lihuihui 已提交
1799
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1800

L
lihuihui 已提交
1801 1802
**系统接口:** 此接口为系统接口。

1803
**参数:**
1804

L
lihuihui 已提交
1805 1806 1807
| 参数名     | 类型                                                         | 必填 | 说明                                          |
| ---------- | ------------------------------------------------------------ | ---- | --------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                              |
1808
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的删除条件。 |
L
lihuihui 已提交
1809
| callback   | AsyncCallback&lt;number&gt;                                  | 是   | 指定callback回调函数。返回受影响的行数。      |
1810 1811

**示例:**
1812

1813
```js
L
ltdong 已提交
1814 1815
import dataSharePredicates from '@ohos.data.dataSharePredicates'
let predicates = new dataSharePredicates.DataSharePredicates()
1816
predicates.equalTo("NAME", "Lisa")
L
lihuihui 已提交
1817
rdbStoreV9.delete("EMPLOYEE", predicates, function (err, rows) {
1818 1819 1820 1821 1822 1823 1824
    if (err) {
        console.info("Delete failed, err: " + err)
        return
    }
    console.log("Delete rows: " + rows)
})
```
1825

1826 1827
### delete<sup>9+</sup>

L
ltdong 已提交
1828
delete(table: string, predicates: dataSharePredicates.DataSharePredicates):Promise&lt;number&gt;
1829

W
wangxiyue 已提交
1830
根据DataSharePredicates的指定实例对象从数据库中删除数据,使用Promise异步回调。
1831

L
lihuihui 已提交
1832
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
1833

L
lihuihui 已提交
1834 1835
**系统接口:** 此接口为系统接口。

1836
**参数:**
1837

L
lihuihui 已提交
1838 1839 1840
| 参数名     | 类型                                                         | 必填 | 说明                                          |
| ---------- | ------------------------------------------------------------ | ---- | --------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                              |
1841
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的删除条件。 |
1842 1843

**返回值**
1844

L
lihuihui 已提交
1845 1846 1847
| 类型                  | 说明                            |
| --------------------- | ------------------------------- |
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |
1848 1849

**示例:**
1850

1851
```js
L
ltdong 已提交
1852 1853
import dataSharePredicates from '@ohos.data.dataSharePredicates'
let predicates = new dataSharePredicates.DataSharePredicates()
1854
predicates.equalTo("NAME", "Lisa")
L
lihuihui 已提交
1855
let promise = rdbStoreV9.delete("EMPLOYEE", predicates)
1856 1857 1858 1859 1860 1861
promise.then((rows) => {
    console.log("Delete rows: " + rows)
}).catch((err) => {
    console.info("Delete failed, err: " + err)
})
```
Z
zengyawen 已提交
1862

L
lihuihui 已提交
1863
### query<sup>9+</sup>
Z
zengyawen 已提交
1864

L
lihuihui 已提交
1865
query(predicates: RdbPredicatesV9, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSetV9&gt;):void
Z
zengyawen 已提交
1866

W
wangxiyue 已提交
1867
根据指定条件查询数据库中的数据,使用callback异步回调。
Z
zengyawen 已提交
1868

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

P
PaDaBoo 已提交
1871
**参数:**
1872

L
lihuihui 已提交
1873 1874 1875 1876 1877
| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99)                         | 是   | RdbPredicatesV9的实例对象指定的查询条件。                   |
| columns    | Array&lt;string&gt;                                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。            |
| callback   | AsyncCallback&lt;[ResultSetV9](js-apis-data-resultset.md)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSetV9对象。 |
Z
zengyawen 已提交
1878

P
PaDaBoo 已提交
1879
**示例:**
1880

P
PaDaBoo 已提交
1881
```js
L
lihuihui 已提交
1882 1883 1884
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Rose")
rdbStoreV9.query(predicatesV9, ["ID", "NAME", "AGE", "SALARY", "CODES"], function (err, resultSetV9) {
P
PaDaBoo 已提交
1885 1886 1887 1888
    if (err) {
        console.info("Query failed, err: " + err)
        return
    }
L
lihuihui 已提交
1889 1890
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
P
PaDaBoo 已提交
1891 1892
})
```
Z
zengyawen 已提交
1893

L
lihuihui 已提交
1894
### query<sup>9+</sup>
Z
zengyawen 已提交
1895

L
lihuihui 已提交
1896
query(predicates: RdbPredicatesV9, columns?: Array&lt;string&gt;):Promise&lt;ResultSetV9&gt;
Z
zengyawen 已提交
1897

W
wangxiyue 已提交
1898
根据指定条件查询数据库中的数据,使用Promise异步回调。
Z
zengyawen 已提交
1899

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

P
PaDaBoo 已提交
1902
**参数:**
1903

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

Z
zengyawen 已提交
1909
**返回值**
1910

L
lihuihui 已提交
1911 1912 1913
| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
| Promise&lt;[ResultSetV9](js-apis-data-resultset.md)&gt; | Promise对象。如果操作成功,则返回ResultSetV9对象。 |
Z
zengyawen 已提交
1914

P
PaDaBoo 已提交
1915
**示例:**
1916

G
ge-yafang 已提交
1917
  ```js
L
lihuihui 已提交
1918 1919 1920 1921 1922 1923 1924 1925 1926
let predicatesV9 = new data_rdb.RdbPredicatesV9("EMPLOYEE")
predicatesV9.equalTo("NAME", "Rose")
let promise = rdbStoreV9.query(predicatesV9, ["ID", "NAME", "AGE", "SALARY", "CODES"])
promise.then((resultSetV9) => {
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
}).catch((err) => {
    console.info("Query failed, err: " + err)
})
Z
zengyawen 已提交
1927 1928
  ```

1929 1930
### query<sup>9+</sup>

L
lihuihui 已提交
1931
query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSetV9&gt;):void
1932

W
wangxiyue 已提交
1933
根据指定条件查询数据库中的数据,使用callback异步回调。
1934

L
lihuihui 已提交
1935 1936
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

L
lihuihui 已提交
1937 1938
**系统接口:** 此接口为系统接口。

L
lihuihui 已提交
1939 1940 1941 1942 1943
**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                                            |
1944
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的查询条件。               |
L
lihuihui 已提交
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
| columns    | Array&lt;string&gt;                                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。            |
| callback   | AsyncCallback&lt;[ResultSetV9](js-apis-data-resultset.md)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSetV9对象。 |

**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
let predicates = new dataSharePredicates.DataSharePredicates()
predicates.equalTo("NAME", "Rose")
rdbStoreV9.query("EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"], function (err, resultSetV9) {
    if (err) {
        console.info("Query failed, err: " + err)
        return
    }
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
})
```

### query<sup>9+</sup>

query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns?: Array&lt;string&gt;):Promise&lt;ResultSetV9&gt;

根据指定条件查询数据库中的数据,使用Promise异步回调。

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

L
lihuihui 已提交
1972 1973
**系统接口:** 此接口为系统接口。

L
lihuihui 已提交
1974 1975 1976 1977 1978
**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                             |
| ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------ |
| table      | string                                                       | 是   | 指定的目标表名。                                 |
1979
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的查询条件。    |
L
lihuihui 已提交
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
| columns    | Array&lt;string&gt;                                          | 否   | 表示要查询的列。如果值为空,则查询应用于所有列。 |

**返回值**

| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
| Promise&lt;[ResultSetV9](js-apis-data-resultset.md)&gt; | Promise对象。如果操作成功,则返回ResultSetV9对象。 |

**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
let predicates = new dataSharePredicates.DataSharePredicates()
predicates.equalTo("NAME", "Rose")
let promise = rdbStoreV9.query("EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"])
promise.then((resultSetV9) => {
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
}).catch((err) => {
    console.info("Query failed, err: " + err)
})
```

### remoteQuery<sup>9+</sup>

remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array&lt;string&gt; , callback: AsyncCallback&lt;ResultSetV9&gt;): void

根据指定条件查询远程设备数据库中的数据。使用callback异步回调。
2008

L
lihuihui 已提交
2009
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
2010 2011

**参数:**
2012

L
lihuihui 已提交
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| device     | string                                                       | 是   | 指定的远程设备的networkId。                                 |
| table      | string                                                       | 是   | 指定的目标表名。                                            |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99)                         | 是   | RdbPredicatesV9的实例对象,指定查询的条件。                 |
| columns    | Array&lt;string&gt;                                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。            |
| callback   | AsyncCallback&lt;[ResultSetV9](js-apis-data-resultset.md#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSetV9对象。 |

**示例:**

```js
let predicatesV9 = new data_rdb.RdbPredicatesV9('EMPLOYEE')
predicatesV9.greaterThan("id", 0)
rdbStoreV9.remoteQuery("deviceId", "EMPLOYEE", predicatesV9, ["ID", "NAME", "AGE", "SALARY", "CODES"],
    function(err, resultSetV9){
    if (err) {
        console.info("Failed to remoteQuery, err: " + err)
        return
    }
    console.info("ResultSet column names: " + resultSetV9.columnNames)
    console.info("ResultSet column count: " + resultSetV9.columnCount)
})
```

### remoteQuery<sup>9+</sup>

remoteQuery(device: string, table: string, predicates: RdbPredicatesV9, columns: Array&lt;string&gt;): Promise&lt;ResultSetV9&gt;

根据指定条件查询远程设备数据库中的数据。使用Promise异步回调。

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

**参数:**

| 参数名     | 类型                                 | 必填 | 说明                                             |
| ---------- | ------------------------------------ | ---- | ------------------------------------------------ |
| device     | string                               | 是   | 指定的远程设备的networkId。                      |
| table      | string                               | 是   | 指定的目标表名。                                 |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | RdbPredicatesV9的实例对象,指定查询的条件。      |
2052
| columns    | Array&lt;string&gt;                  | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。 |
L
lihuihui 已提交
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670

**返回值**

| 类型                                                         | 说明                                               |
| ------------------------------------------------------------ | -------------------------------------------------- |
| Promise&lt;[ResultSetV9](js-apis-data-resultset.md#resultset)&gt; | Promise对象。如果操作成功,则返回ResultSetV9对象。 |

**示例:**

```js
let predicatesV9 = new data_rdb.RdbPredicatesV9('EMPLOYEE')
predicatesV9.greaterThan("id", 0)
let promise = rdbStoreV9.remoteQuery("deviceId", "EMPLOYEE", predicatesV9, ["ID", "NAME", "AGE", "SALARY", "CODES"])
promise.then((resultSetV9) => {
    console.info("ResultSet column names: " + resultSetV9.columnNames)
    console.info("ResultSet column count: " + resultSetV9.columnCount)
}).catch((err) => {
    console.info("Failed to remoteQuery , err: " + err)
})
```

### querySql<sup>9+</sup>

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

根据指定SQL语句查询数据库中的数据,使用callback异步回调。

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

**参数:**

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

**示例:**

```js
rdbStoreV9.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'], function (err, resultSetV9) {
    if (err) {
        console.info("Query failed, err: " + err)
        return
    }
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
})
```

### querySql<sup>9+</sup>

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

根据指定SQL语句查询数据库中的数据,使用Promise异步回调。

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

**参数:**

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

**返回值**

| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
| Promise&lt;[ResultSetV9](js-apis-data-resultset.md)&gt; | Promise对象。如果操作成功,则返回ResultSetV9对象。 |

**示例:**

```js
let promise = rdbStoreV9.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'])
promise.then((resultSetV9) => {
    console.log("ResultSet column names: " + resultSetV9.columnNames)
    console.log("ResultSet column count: " + resultSetV9.columnCount)
}).catch((err) => {
    console.info("Query failed, err: " + err)
})
```

### executeSql<sup>9+</sup>

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

执行包含指定参数但不返回值的SQL语句,使用callback异步回调。

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

**参数:**

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

**示例:**

```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)"
rdbStoreV9.executeSql(SQL_CREATE_TABLE, null, function(err) {
    if (err) {
        console.info("ExecuteSql failed, err: " + err)
        return
    }
    console.info('Create table done.')
})
```

### executeSql<sup>9+</sup>

executeSql(sql: string, bindArgs?: Array&lt;ValueType&gt;):Promise&lt;void&gt;

执行包含指定参数但不返回值的SQL语句,使用Promise异步回调。

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

**参数:**

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

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```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 = rdbStoreV9.executeSql(SQL_CREATE_TABLE)
promise.then(() => {
    console.info('Create table done.')
}).catch((err) => {
    console.info("ExecuteSql failed, err: " + err)
})
```

### beginTransaction<sup>9+</sup>

beginTransaction():void

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

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()
const STORE_CONFIG = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
data_rdb.getRdbStoreV9(context, STORE_CONFIG, 1, async function (err, rdbStoreV9) {
    rdbStoreV9.beginTransaction()
	const valueBucket = {
		"name": "lisi",
		"age": 18,
		"salary": 100.5,
		"blobType": new Uint8Array([1, 2, 3]),
	}
	await rdbStoreV9.insert("test", valueBucket)
	rdbStoreV9.commit()
})
```

### commit<sup>9+</sup>

commit():void

提交已执行的SQL语句。

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()
const STORE_CONFIG = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
data_rdb.getRdbStoreV9(context, STORE_CONFIG, 1, async function (err, rdbStoreV9) {
    rdbStoreV9.beginTransaction()
	const valueBucket = {
		"name": "lisi",
		"age": 18,
		"salary": 100.5,
		"blobType": new Uint8Array([1, 2, 3]),
	}
	await rdbStoreV9.insert("test", valueBucket)
	rdbStoreV9.commit()
})
```

### rollBack<sup>9+</sup>

rollBack():void

回滚已经执行的SQL语句。

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
let context = featureAbility.getContext()
const STORE_CONFIG = { name: "RdbTest.db",
                     securityLevel: data_rdb.SecurityLevel.S1}
data_rdb.getRdbStoreV9(context, STORE_CONFIG, 1, async function (err, rdbStoreV9) {
    try {
		rdbStoreV9.beginTransaction()
		const valueBucket = {
			"id": 1,
			"name": "lisi",
			"age": 18,
			"salary": 100.5,
			"blobType": new Uint8Array([1, 2, 3]),
		}
		await rdbStoreV9.insert("test", valueBucket)
		rdbStoreV9.commit()
	} catch (e) {
		rdbStoreV9.rollBack()
	}
})
```

### backup<sup>9+</sup>

backup(destName:string, callback: AsyncCallback&lt;void&gt;):void

以指定名称备份数据库,使用callback异步回调。

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| destName | string                    | 是   | 指定数据库的备份文件名。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。   |

**示例:**

```js
rdbStoreV9.backup("dbBackup.db", function(err) {
    if (err) {
        console.info('Backup failed, err: ' + err)
        return
    }
    console.info('Backup success.')
})
```

### backup<sup>9+</sup>

backup(destName:string): Promise&lt;void&gt;

以指定名称备份数据库,使用Promise异步回调。

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

**参数:**

| 参数名   | 类型   | 必填 | 说明                     |
| -------- | ------ | ---- | ------------------------ |
| destName | string | 是   | 指定数据库的备份文件名。 |

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promiseBackup = rdbStoreV9.backup("dbBackup.db")
promiseBackup.then(()=>{
    console.info('Backup success.')
}).catch((err)=>{
    console.info('Backup failed, err: ' + err)
})
```

### restore<sup>9+</sup>

restore(srcName:string, callback: AsyncCallback&lt;void&gt;):void

从指定的数据库备份文件恢复数据库,使用callback异步回调。

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                     |
| -------- | ------------------------- | ---- | ------------------------ |
| srcName  | string                    | 是   | 指定数据库的备份文件名。 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。   |

**示例:**

```js
rdbStoreV9.restore("dbBackup.db", function(err) {
    if (err) {
        console.info('Restore failed, err: ' + err)
        return
    }
    console.info('Restore success.')
})
```

### restore<sup>9+</sup>

restore(srcName:string): Promise&lt;void&gt;

从指定的数据库备份文件恢复数据库,使用Promise异步回调。

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

**参数:**

| 参数名  | 类型   | 必填 | 说明                     |
| ------- | ------ | ---- | ------------------------ |
| srcName | string | 是   | 指定数据库的备份文件名。 |

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promiseRestore = rdbStoreV9.restore("dbBackup.db")
promiseRestore.then(()=>{
    console.info('Restore success.')
}).catch((err)=>{
    console.info('Restore failed, err: ' + err)
})
```

### setDistributedTables<sup>9+</sup>

setDistributedTables(tables: Array&lt;string&gt;, callback: AsyncCallback&lt;void&gt;): void

设置分布式列表,使用callback异步回调。

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

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                   |
| -------- | ------------------------- | ---- | ---------------------- |
| tables   | Array&lt;string&gt;       | 是   | 要设置的分布式列表表名 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。 |

**示例:**

```js
rdbStoreV9.setDistributedTables(["EMPLOYEE"], function (err) {
    if (err) {
        console.info('SetDistributedTables failed, err: ' + err)
        return
    }
    console.info('SetDistributedTables successfully.')
})
```

### setDistributedTables<sup>9+</sup>

 setDistributedTables(tables: Array&lt;string&gt;): Promise&lt;void&gt;

设置分布式列表,使用Promise异步回调。

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

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

**参数:**

| 参数名 | 类型                | 必填 | 说明                     |
| ------ | ------------------- | ---- | ------------------------ |
| tables | Array&lt;string&gt; | 是   | 要设置的分布式列表表名。 |

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

```js
let promise = rdbStoreV9.setDistributedTables(["EMPLOYEE"])
promise.then(() => {
    console.info("SetDistributedTables successfully.")
}).catch((err) => {
    console.info("SetDistributedTables failed, err: " + err)
})
```

### obtainDistributedTableName<sup>9+</sup>

obtainDistributedTableName(device: string, table: string, callback: AsyncCallback&lt;string&gt;): void

根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名, 使用callback异步回调。

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

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

**参数:**

| 参数名   | 类型                        | 必填 | 说明                                                         |
| -------- | --------------------------- | ---- | ------------------------------------------------------------ |
| device   | string                      | 是   | 远程设备 。                                                  |
| table    | string                      | 是   | 本地表名。                                                   |
| callback | AsyncCallback&lt;string&gt; | 是   | 指定的callback回调函数。如果操作成功,返回远程设备的分布式表名。 |

**示例:**

```js
rdbStoreV9.obtainDistributedTableName("12345678abcde", "EMPLOYEE", function (err, tableName) {
    if (err) {
        console.info('ObtainDistributedTableName failed, err: ' + err)
        return
    }
    console.info('ObtainDistributedTableName successfully, tableName=.' + tableName)
})
```

### obtainDistributedTableName<sup>9+</sup>

 obtainDistributedTableName(device: string, table: string): Promise&lt;string&gt;

根据本地表名获取指定远程设备的分布式表名。在查询远程设备数据库时,需要使用分布式表名,使用Promise异步回调。

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

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

**参数:**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| device | string | 是   | 远程设备。 |
| table  | string | 是   | 本地表名。 |

**返回值**

| 类型                  | 说明                                                  |
| --------------------- | ----------------------------------------------------- |
| Promise&lt;string&gt; | Promise对象。如果操作成功,返回远程设备的分布式表名。 |

**示例:**

```js
let promise = rdbStoreV9.obtainDistributedTableName("12345678abcde", "EMPLOYEE")
promise.then((tableName) => {
    console.info('ObtainDistributedTableName successfully, tableName= ' + tableName)
}).catch((err) => {
    console.info('ObtainDistributedTableName failed, err: ' + err)
})
```

### sync<sup>9+</sup>

sync(mode: SyncMode, predicates: RdbPredicatesV9, callback: AsyncCallback&lt;Array&lt;[string, number]&gt;&gt;): void

在设备之间同步数据, 使用callback异步回调。

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

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

**参数:**

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

**示例:**

```js
let predicatesV9 = new data_rdb.RdbPredicatesV9('EMPLOYEE')
predicatesV9.inDevices(['12345678abcde'])
rdbStoreV9.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicatesV9, function (err, result) {
    if (err) {
        console.log('Sync failed, err: ' + err)
        return
    }
    console.log('Sync done.')
    for (let i = 0; i < result.length; i++) {
        console.log('device=' + result[i][0] + ' status=' + result[i][1])
    }
})
```

### sync<sup>9+</sup>

 sync(mode: SyncMode, predicates: RdbPredicatesV9): Promise&lt;Array&lt;[string, number]&gt;&gt;

在设备之间同步数据,使用Promise异步回调。

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

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

**参数:**

| 参数名     | 类型                                 | 必填 | 说明                           |
| ---------- | ------------------------------------ | ---- | ------------------------------ |
| mode       | [SyncMode](#syncmode8)               | 是   | 指同步模式。该值可以是推、拉。 |
| predicates | [RdbPredicatesV9](#rdbpredicatesv99) | 是   | 约束同步数据和设备。           |

**返回值**

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

**示例:**

```js
let predicatesV9 = new data_rdb.RdbPredicatesV9('EMPLOYEE')
predicatesV9.inDevices(['12345678abcde'])
let promise = rdbStoreV9.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicatesV9)
promise.then((resultSetV9) =>{
    console.log('Sync done.')
    for (let i = 0; i < resultSetV9.length; i++) {
        console.log('device=' + resultSetV9[i][0] + ' status=' + resultSetV9[i][1])
    }
}).catch((err) => {
    console.log('Sync failed')
})
```

### on('dataChange')<sup>9+</sup>

on(event: 'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void

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

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

**参数:**

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

**示例:**

```js
function storeObserver(devices) {
    for (let i = 0; i < devices.length; i++) {
        console.log('device=' + devices[i] + ' data changed')
    }
}
try {
    rdbStoreV9.on('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver)
} catch (err) {
    console.log('Register observer failed')
}
```

### off('dataChange')<sup>9+</sup>

off(event:'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void

从数据库中删除指定类型的指定观察者, 使用callback异步回调。

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

**参数:**

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

**示例:**

```js
function storeObserver(devices) {
    for (let i = 0; i < devices.length; i++) {
        console.log('device=' + devices[i] + ' data changed')
    }
}
try {
    rdbStoreV9.off('dataChange', data_rdb.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver)
} catch (err) {
    console.log('Unregister observer failed')
}
```

## StoreConfigV9<sup>9+</sup>

管理关系数据库配置。

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

2671
| 名称        | 类型          | 必填 | 说明                                                      |
L
lihuihui 已提交
2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995
| ------------- | ------------- | ---- | --------------------------------------------------------- |
| name          | string        | 是   | 数据库文件名。                                            |
| securityLevel | SecurityLevel | 是   | 设置数据库安全级别                                        |
| encrypt       | boolean       | 否   | 指定数据库是否加密。<br/> true:加密。<br/> false:非加密。 |

## SecurityLevel<sup>9+</sup>

数据库的安全级别枚举。

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

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

## ValueType

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

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

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


## ValuesBucket

用于存储键值对的类型。

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

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

## SyncMode<sup>8+</sup>

指数据库同步模式。

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

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

## SubscribeType<sup>8+</sup>

描述订阅类型。

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

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

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

## RdbPredicates<sup>(deprecated)</sup>

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

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[RdbPredicatesV9](#rdbpredicatesv99)替代。


### constructor<sup>(deprecated)</sup>

constructor(name: string)

构造函数。

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[constructor](#constructor9)替代。

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

**参数:**

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

**示例:**

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

### inDevices<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 8 开始支持,从 API Version 9 开始废弃,建议使用[inDevices](#indevices9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### inAllDevices<sup>(deprecated)</sup>

inAllDevices(): RdbPredicates

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

> **说明:**
>
> 从 API Version 8 开始支持,从 API Version 9 开始废弃,建议使用[inAllDevices](#inalldevices9)替代。

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

**返回值**

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

**示例:**

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

### equalTo<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[equalTo](#equalto9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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


### notEqualTo<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[notEqualTo](#notequalto9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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


### beginWrap<sup>(deprecated)</sup>

beginWrap(): RdbPredicates

向谓词添加左括号。

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[beginWrap](#beginwrap9)替代。

**系统能力:** 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()
```

### endWrap<sup>(deprecated)</sup>

endWrap(): RdbPredicates

向谓词添加右括号。

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[endWrap](#endwrap9)替代。

**系统能力:** 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()
```

### or<sup>(deprecated)</sup>

or(): RdbPredicates

将或条件添加到谓词中。

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[or](#or9)替代。

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

**返回值**

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

**示例:**

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

### and<sup>(deprecated)</sup>

and(): RdbPredicates

向谓词添加和条件。

> **说明:**
>
> 从 API Version 7 开始支持,从 API Version 9 开始废弃,建议使用[and](#and9)替代。

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

**返回值**

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

**示例:**

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

### contains<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[contains](#contains9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### beginsWith<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[beginsWith](#beginswith9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### endsWith<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[endsWith](#endswith9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### isNull<sup>(deprecated)</sup>

isNull(field: string): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[isNull](#isnull9)替代。

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

**参数:**

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

**返回值**

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

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

### isNotNull<sup>(deprecated)</sup>

isNotNull(field: string): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[isNotNull](#isnotnull9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### like<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[like](#like9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### glob<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[glob](#glob9)替代。

**系统能力:** 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")
```

### between<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[between](#between9)替代。

**系统能力:** 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)
```

### notBetween<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[notBetween](#notbetween9)替代。

**系统能力:** 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)
```

### greaterThan<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[greaterThan](#greaterthan9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### lessThan<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[lessThan](#lessthan9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### greaterThanOrEqualTo<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[greaterThanOrEqualTo](#greaterthanorequalto9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### lessThanOrEqualTo<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[lessThanOrEqualTo](#lessthanorequalto9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### orderByAsc<sup>(deprecated)</sup>

orderByAsc(field: string): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[orderByAsc](#orderbyasc9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### orderByDesc<sup>(deprecated)</sup>

orderByDesc(field: string): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[orderByDesc](#orderbydesc9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### distinct<sup>(deprecated)</sup>

distinct(): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[distinct](#distinct9)替代。

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

**返回值**

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

**示例:**

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

### limitAs<sup>(deprecated)</sup>

limitAs(value: number): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[limitAs](#limitas9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### offsetAs<sup>(deprecated)</sup>

offsetAs(rowOffset: number): RdbPredicates

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[offsetAs](#offsetas9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### groupBy<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[groupBy](#groupby9)替代。

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

**参数:**

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

**返回值**

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

**示例:**

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

### indexedBy<sup>(deprecated)</sup>

indexedBy(field: string): RdbPredicates

配置RdbPredicates以指定索引列。

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[indexedBy](#indexedby9)替代。

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

**参数:**

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

**返回值**


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

**示例:**

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

### in<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[in](#in9)替代。

**系统能力:** 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])
```

### notIn<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[notIn](#notin9)替代。

**系统能力:** 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"])
```

## RdbStore<sup>(deprecated)</sup>

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[RdbStoreV9](#rdbstorev99)替代。

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

### insert<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[insert](#insert9-1)替代。

**系统能力:** 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);
})
```

### insert<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[insert](#insert9-2)替代。

**系统能力:** 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");
})
```

### batchInsert<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[batchInsert](#batchinsert9-1)替代。

**系统能力:** 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);
})
```

### batchInsert<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[batchInsert](#batchinsert9-2)替代。

**系统能力:** 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);
})
```

### update<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[update](#update9-1)替代。

**系统能力:** 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)
})
```

### update<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[update](#update9-2)替代。

**系统能力:** 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)
})
```

### delete<sup>(deprecated)</sup>

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

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

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[delete](#delete9-1)替代。

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

**参数:**

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

**示例:**
3998

3999
```js
L
lihuihui 已提交
4000 4001 4002
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
rdbStore.delete(predicates, function (err, rows) {
4003
    if (err) {
L
lihuihui 已提交
4004
        console.info("Delete failed, err: " + err)
4005 4006
        return
    }
L
lihuihui 已提交
4007
    console.log("Delete rows: " + rows)
4008 4009 4010
})
```

L
lihuihui 已提交
4011
### delete<sup>(deprecated)</sup>
4012

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

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

L
lihuihui 已提交
4017 4018 4019
> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[delete](#delete9-2)替代。
4020

L
lihuihui 已提交
4021
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
4022 4023

**参数:**
4024

4025 4026
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
L
lihuihui 已提交
4027
| predicates | [RdbPredicates](#rdbpredicates) | 是 | RdbPredicates的实例对象指定的删除条件。 |
4028 4029

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

4031 4032
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
4033
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |
4034 4035

**示例:**
4036

4037
```js
L
lihuihui 已提交
4038 4039 4040 4041 4042
let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
predicates.equalTo("NAME", "Lisa")
let promise = rdbStore.delete(predicates)
promise.then((rows) => {
    console.log("Delete rows: " + rows)
4043
}).catch((err) => {
L
lihuihui 已提交
4044
    console.info("Delete failed, err: " + err)
4045 4046
})
```
Z
zengyawen 已提交
4047

L
lihuihui 已提交
4048
### query<sup>(deprecated)</sup>
4049

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

L
lihuihui 已提交
4052 4053 4054 4055 4056
根据指定条件查询数据库中的数据,使用callback异步回调。

> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[query](#query9-1)替代。
4057

L
li_juntao 已提交
4058
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
4059 4060

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

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

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

4070
```js
L
lihuihui 已提交
4071 4072 4073
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 已提交
4074
    if (err) {
L
lihuihui 已提交
4075
        console.info("Query failed, err: " + err)
L
li_juntao 已提交
4076 4077
        return
    }
L
lihuihui 已提交
4078 4079
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
4080 4081 4082
})
```

L
lihuihui 已提交
4083 4084 4085
### query<sup>(deprecated)</sup>

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

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

L
lihuihui 已提交
4089 4090 4091
> **说明:**
>
> 从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[query](#query9-2)替代。
4092

L
li_juntao 已提交
4093
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
4094 4095 4096 4097 4098

**参数:**

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

L
li_juntao 已提交
4102 4103
**返回值**

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

4108 4109
**示例:**

L
lihuihui 已提交
4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120
  ```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)
  })
  ```
4121

L
lihuihui 已提交
4122
### querySql<sup>(deprecated)</sup>
M
mangtsang 已提交
4123 4124 4125

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

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

L
lihuihui 已提交
4128 4129 4130 4131 4132
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[querySql](#querysql9-1)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4133

P
PaDaBoo 已提交
4134
**参数:**
4135

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

P
PaDaBoo 已提交
4142
**示例:**
4143

P
PaDaBoo 已提交
4144 4145 4146 4147 4148 4149
```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 已提交
4150 4151
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
P
PaDaBoo 已提交
4152 4153
})
```
M
mangtsang 已提交
4154

L
lihuihui 已提交
4155
### querySql<sup>(deprecated)</sup>
M
mangtsang 已提交
4156 4157 4158

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

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

L
lihuihui 已提交
4161 4162 4163 4164 4165
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[querySql](#querysql9-2)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4166

P
PaDaBoo 已提交
4167
**参数:**
4168

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

Z
zengyawen 已提交
4174
**返回值**
4175

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

P
PaDaBoo 已提交
4180
**示例:**
4181

P
PaDaBoo 已提交
4182 4183 4184
```js
let promise = rdbStore.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'])
promise.then((resultSet) => {
W
wuyongning 已提交
4185 4186
    console.log("ResultSet column names: " + resultSet.columnNames)
    console.log("ResultSet column count: " + resultSet.columnCount)
P
PaDaBoo 已提交
4187 4188 4189 4190
}).catch((err) => {
    console.info("Query failed, err: " + err)
})
```
M
mangtsang 已提交
4191

L
lihuihui 已提交
4192
### executeSql<sup>(deprecated)</sup>
Z
zengyawen 已提交
4193 4194

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

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

L
lihuihui 已提交
4198 4199 4200 4201 4202
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[executeSql](#executesql9-1)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4203

P
PaDaBoo 已提交
4204
**参数:**
4205

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

P
PaDaBoo 已提交
4212
**示例:**
4213

P
PaDaBoo 已提交
4214 4215 4216 4217
```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 已提交
4218
        console.info("ExecuteSql failed, err: " + err)
P
PaDaBoo 已提交
4219 4220
        return
    }
W
wuyongning 已提交
4221
    console.info('Create table done.')
P
PaDaBoo 已提交
4222 4223
})
```
Z
zengyawen 已提交
4224

L
lihuihui 已提交
4225
### executeSql<sup>(deprecated)</sup>
Z
zengyawen 已提交
4226

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

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

L
lihuihui 已提交
4231 4232 4233 4234 4235
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[executeSql](#executesql9-2)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4236

P
PaDaBoo 已提交
4237
**参数:**
4238

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

Z
zengyawen 已提交
4244
**返回值**
4245

Z
zengyawen 已提交
4246 4247
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
4248
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
Z
zengyawen 已提交
4249

P
PaDaBoo 已提交
4250
**示例:**
4251

P
PaDaBoo 已提交
4252 4253 4254 4255
```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 已提交
4256
    console.info('Create table done.')
P
PaDaBoo 已提交
4257 4258 4259 4260
}).catch((err) => {
    console.info("ExecuteSql failed, err: " + err)
})
```
S
sun-dou 已提交
4261

L
lihuihui 已提交
4262
### beginTransaction<sup>(deprecated)</sup>
W
wuyongning 已提交
4263 4264 4265 4266 4267

beginTransaction():void

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

L
lihuihui 已提交
4268 4269 4270 4271 4272
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[beginTransaction](#begintransaction9)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4273

P
PaDaBoo 已提交
4274
**示例:**
4275

G
ge-yafang 已提交
4276
```js
L
add  
ltdong 已提交
4277
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
4278
let context = featureAbility.getContext()
L
add  
ltdong 已提交
4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290
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 已提交
4291 4292
```

L
lihuihui 已提交
4293
### commit<sup>(deprecated)</sup>
W
wuyongning 已提交
4294 4295 4296 4297 4298

commit():void

提交已执行的SQL语句。

L
lihuihui 已提交
4299 4300 4301 4302 4303
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[commit](#commit9)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4304

P
PaDaBoo 已提交
4305
**示例:**
4306

G
ge-yafang 已提交
4307
```js
L
add  
ltdong 已提交
4308
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
4309
let context = featureAbility.getContext()
L
add  
ltdong 已提交
4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321
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 已提交
4322 4323
```

L
lihuihui 已提交
4324
### rollBack<sup>(deprecated)</sup>
W
wuyongning 已提交
4325

4326
rollBack():void
W
wuyongning 已提交
4327 4328 4329

回滚已经执行的SQL语句。

L
lihuihui 已提交
4330 4331 4332 4333 4334
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[rollBack](#rollback9)替代。

**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4335

P
PaDaBoo 已提交
4336
**示例:**
4337

G
ge-yafang 已提交
4338
```js
L
add  
ltdong 已提交
4339
import featureAbility from '@ohos.ability.featureAbility'
L
lihuihui 已提交
4340
let context = featureAbility.getContext()
L
add  
ltdong 已提交
4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357
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 已提交
4358 4359
```

L
lihuihui 已提交
4360
### setDistributedTables<sup>(deprecated)</sup>
S
sun-dou 已提交
4361

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

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

L
lihuihui 已提交
4366 4367 4368 4369
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[setDistributedTables](#setdistributedtables9-1)替代。

W
wuyongning 已提交
4370 4371
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4374
**参数:**
4375

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

P
PaDaBoo 已提交
4381
**示例:**
4382

P
PaDaBoo 已提交
4383 4384 4385
```js
rdbStore.setDistributedTables(["EMPLOYEE"], function (err) {
    if (err) {
W
wuyongning 已提交
4386
        console.info('SetDistributedTables failed, err: ' + err)
P
PaDaBoo 已提交
4387 4388
        return
    }
W
wuyongning 已提交
4389
    console.info('SetDistributedTables successfully.')
P
PaDaBoo 已提交
4390
})
4391
```
S
sun-dou 已提交
4392

L
lihuihui 已提交
4393
### setDistributedTables<sup>(deprecated)</sup>
S
sun-dou 已提交
4394

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

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

L
lihuihui 已提交
4399 4400 4401 4402
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[setDistributedTables](#setdistributedtables9-2)替代。

W
wuyongning 已提交
4403 4404
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4407
**参数:**
4408

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

Z
zengyawen 已提交
4413
**返回值**
4414

Z
zengyawen 已提交
4415 4416
| 类型 | 说明 |
| -------- | -------- |
L
lihuihui 已提交
4417
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
S
sun-dou 已提交
4418

P
PaDaBoo 已提交
4419
**示例:**
4420

P
PaDaBoo 已提交
4421 4422 4423
```js
let promise = rdbStore.setDistributedTables(["EMPLOYEE"])
promise.then(() => {
W
wuyongning 已提交
4424
    console.info("SetDistributedTables successfully.")
P
PaDaBoo 已提交
4425
}).catch((err) => {
W
wuyongning 已提交
4426
    console.info("SetDistributedTables failed, err: " + err)
P
PaDaBoo 已提交
4427 4428
})
```
S
sun-dou 已提交
4429

L
lihuihui 已提交
4430
### obtainDistributedTableName<sup>(deprecated)</sup>
S
sun-dou 已提交
4431

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

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

L
lihuihui 已提交
4436 4437 4438 4439
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[obtainDistributedTableName](#obtaindistributedtablename9-1)替代。

W
wuyongning 已提交
4440 4441
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4444
**参数:**
4445

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

P
PaDaBoo 已提交
4452
**示例:**
4453

P
PaDaBoo 已提交
4454
```js
W
wuyongning 已提交
4455
rdbStore.obtainDistributedTableName("12345678abcde", "EMPLOYEE", function (err, tableName) {
P
PaDaBoo 已提交
4456
    if (err) {
W
wuyongning 已提交
4457
        console.info('ObtainDistributedTableName failed, err: ' + err)
P
PaDaBoo 已提交
4458 4459
        return
    }
W
wuyongning 已提交
4460
    console.info('ObtainDistributedTableName successfully, tableName=.' + tableName)
P
PaDaBoo 已提交
4461 4462
})
```
S
sun-dou 已提交
4463

L
lihuihui 已提交
4464
### obtainDistributedTableName<sup>(deprecated)</sup>
S
sun-dou 已提交
4465

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

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

L
lihuihui 已提交
4470 4471 4472 4473
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[obtainDistributedTableName](#obtaindistributedtablename9-2)替代。

W
wuyongning 已提交
4474 4475
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4478
**参数:**
4479

Z
zengyawen 已提交
4480 4481 4482 4483
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| device | string | 是 | 远程设备。 |
| table | string | 是 | 本地表名。 |
S
sun-dou 已提交
4484

Z
zengyawen 已提交
4485
**返回值**
4486

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

P
PaDaBoo 已提交
4491
**示例:**
4492

P
PaDaBoo 已提交
4493
```js
W
wuyongning 已提交
4494
let promise = rdbStore.obtainDistributedTableName("12345678abcde", "EMPLOYEE")
P
PaDaBoo 已提交
4495
promise.then((tableName) => {
W
wuyongning 已提交
4496
    console.info('ObtainDistributedTableName successfully, tableName= ' + tableName)
P
PaDaBoo 已提交
4497
}).catch((err) => {
W
wuyongning 已提交
4498
    console.info('ObtainDistributedTableName failed, err: ' + err)
P
PaDaBoo 已提交
4499 4500
})
```
S
sun-dou 已提交
4501

L
lihuihui 已提交
4502
### sync<sup>(deprecated)</sup>
S
sun-dou 已提交
4503

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

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

L
lihuihui 已提交
4508 4509 4510 4511
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[sync](#sync9-1)替代。

W
wuyongning 已提交
4512 4513
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4516
**参数:**
4517

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

P
PaDaBoo 已提交
4524
**示例:**
4525

P
PaDaBoo 已提交
4526
```js
W
wuyongning 已提交
4527
let predicates = new data_rdb.RdbPredicates('EMPLOYEE')
P
PaDaBoo 已提交
4528
predicates.inDevices(['12345678abcde'])
W
wuyongning 已提交
4529
rdbStore.sync(data_rdb.SyncMode.SYNC_MODE_PUSH, predicates, function (err, result) {
P
PaDaBoo 已提交
4530
    if (err) {
W
wuyongning 已提交
4531
        console.log('Sync failed, err: ' + err)
P
PaDaBoo 已提交
4532 4533
        return
    }
W
wuyongning 已提交
4534
    console.log('Sync done.')
P
PaDaBoo 已提交
4535 4536 4537 4538 4539
    for (let i = 0; i < result.length; i++) {
        console.log('device=' + result[i][0] + ' status=' + result[i][1])
    }
})
```
S
sun-dou 已提交
4540

L
lihuihui 已提交
4541
### sync<sup>(deprecated)</sup>
S
sun-dou 已提交
4542

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

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

L
lihuihui 已提交
4547 4548 4549 4550
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[sync](#sync9-2)替代。

W
wuyongning 已提交
4551 4552
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

P
PaDaBoo 已提交
4555
**参数:**
4556

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

Z
zengyawen 已提交
4562
**返回值**
Z
zengyawen 已提交
4563 4564 4565

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

P
PaDaBoo 已提交
4568
**示例:**
4569

P
PaDaBoo 已提交
4570 4571 4572 4573 4574
```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 已提交
4575
    console.log('Sync done.')
P
PaDaBoo 已提交
4576 4577 4578 4579
    for (let i = 0; i < result.length; i++) {
        console.log('device=' + result[i][0] + ' status=' + result[i][1])
    }
}).catch((err) => {
W
wuyongning 已提交
4580
    console.log('Sync failed')
P
PaDaBoo 已提交
4581 4582
})
```
S
sun-dou 已提交
4583

L
lihuihui 已提交
4584
### on('dataChange')<sup>(deprecated)</sup>
S
sun-dou 已提交
4585

W
wuyongning 已提交
4586
on(event: 'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void
S
sun-dou 已提交
4587 4588 4589

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

L
lihuihui 已提交
4590 4591 4592
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[on](#ondatachange9)替代。
W
wuyongning 已提交
4593

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

P
PaDaBoo 已提交
4596
**参数:**
Z
zengyawen 已提交
4597

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

P
PaDaBoo 已提交
4604
**示例:**
4605

P
PaDaBoo 已提交
4606 4607 4608 4609 4610 4611 4612 4613 4614
```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 已提交
4615
    console.log('Register observer failed')
P
PaDaBoo 已提交
4616 4617
}
```
S
sun-dou 已提交
4618

L
lihuihui 已提交
4619
### off('dataChange')<sup>(deprecated)</sup>
S
sun-dou 已提交
4620

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

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

L
lihuihui 已提交
4625 4626 4627
> **说明:**
>
> 从 API Version 8开始支持,从 API Version 9 开始废弃,建议使用[off](#offdatachange9)替代。
W
wuyongning 已提交
4628

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

P
PaDaBoo 已提交
4631
**参数:**
Z
zengyawen 已提交
4632

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

P
PaDaBoo 已提交
4639
**示例:**
4640

P
PaDaBoo 已提交
4641 4642 4643 4644 4645 4646 4647 4648 4649
```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 已提交
4650
    console.log('Unregister observer failed')
P
PaDaBoo 已提交
4651 4652
}
```
S
sun-dou 已提交
4653

L
lihuihui 已提交
4654
## StoreConfig<sup>(deprecated)</sup>
Z
zengyawen 已提交
4655 4656 4657

管理关系数据库配置。

L
lihuihui 已提交
4658 4659 4660 4661 4662
**说明:**

从 API Version 7开始支持,从 API Version 9 开始废弃,建议使用[StoreConfigV9](#storeconfigv99)替代。

**系统能力:**SystemCapability.DistributedDataManager.RelationalStore.Core
W
wuyongning 已提交
4663

4664
| 名称 | 类型 | 必填 | 说明 |
Z
zengyawen 已提交
4665 4666
| -------- | -------- | -------- | -------- |
| name | string | 是 | 数据库文件名。 |
W
wuyongning 已提交
4667