js-apis-data-relationalStore.md 188.3 KB
Newer Older
1 2
# @ohos.data.relationalStore (关系型数据库)

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

该模块提供以下关系型数据库相关的常用功能:

7 8
- [RdbPredicates](#rdbpredicates): 数据库中用来代表数据实体的性质、特征或者数据实体之间关系的词项,主要用来定义数据库的操作条件。
- [RdbStore](#rdbstore):提供管理关系数据库(RDB)方法的接口。
L
LiRui 已提交
9
- [ResultSet](#resultset):提供用户调用关系型数据库查询接口之后返回的结果集合。
10 11 12 13 14 15 16 17

> **说明:**
> 
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 导入模块

```js
18
import relationalStore from '@ohos.data.relationalStore'
19 20
```

21
## relationalStore.getRdbStore
22

23
getRdbStore(context: Context, config: StoreConfig, callback: AsyncCallback<RdbStore>): void
24 25 26 27 28 29 30 31 32

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

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

**参数:**

| 参数名   | 类型                                           | 必填 | 说明                                                         |
| -------- | ---------------------------------------------- | ---- | ------------------------------------------------------------ |
W
wangxiyue 已提交
33
| context  | Context                                        | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
34
| config   | [StoreConfig](#storeconfig)               | 是   | 与此RDB存储相关的数据库配置。                                |
35
| callback | AsyncCallback&lt;[RdbStore](#rdbstore)&gt; | 是   | 指定callback回调函数,返回RdbStore对象。                   |
36 37 38 39 40

**错误码:**

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

L
LiRui 已提交
41 42 43 44 45
| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800011     | Failed to open database by database corrupted.              |
| 14800000     | Inner error.                                                |
L
rdb  
lihuihui 已提交
46 47
| 14801001     | Only supported in stage mode.                               |
| 14801002     | The data group id is not valid.                             |
48 49 50 51 52 53

**示例:**

FA模型示例:

```js
54

55
import featureAbility from '@ohos.ability.featureAbility'
56

57 58
var store;

59
// 获取context
60
let context = featureAbility.getContext();
61 62

const STORE_CONFIG = {
63 64 65 66 67 68 69
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};

relationalStore.getRdbStore(context, STORE_CONFIG, function (err, rdbStore) {
  store = rdbStore;
  if (err) {
G
ge-yafang 已提交
70
    console.error(`Get RdbStore failed, code is ${err.code},message is ${err.message}`);
71 72 73
    return;
  }
  console.info(`Get RdbStore successfully.`);
74 75 76 77 78 79
})
```

Stage模型示例:

```ts
80
import UIAbility from '@ohos.app.ability.UIAbility'
81 82

class EntryAbility extends UIAbility {
83 84 85 86 87 88
  onWindowStageCreate(windowStage) {
    var store;
    const STORE_CONFIG = {
      name: "RdbTest.db",
      securityLevel: relationalStore.SecurityLevel.S1
    };
89
        
90 91 92
    relationalStore.getRdbStore(this.context, STORE_CONFIG, function (err, rdbStore) {
      store = rdbStore;
      if (err) {
G
ge-yafang 已提交
93
        console.error(`Get RdbStore failed, code is ${err.code},message is ${err.message}`);
94 95 96 97 98
        return;
      }
      console.info(`Get RdbStore successfully.`);
    })
  }
99 100 101
}
```

102
## relationalStore.getRdbStore
103

104
getRdbStore(context: Context, config: StoreConfig): Promise&lt;RdbStore&gt;
105 106 107 108 109 110 111 112 113

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

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

**参数:**

| 参数名  | 类型                             | 必填 | 说明                                                         |
| ------- | -------------------------------- | ---- | ------------------------------------------------------------ |
W
wangxiyue 已提交
114
| context | Context                          | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
115 116 117 118 119 120
| config  | [StoreConfig](#storeconfig) | 是   | 与此RDB存储相关的数据库配置。                                |

**返回值**

| 类型                                      | 说明                              |
| ----------------------------------------- | --------------------------------- |
121
| Promise&lt;[RdbStore](#rdbstore)&gt; | Promise对象。返回RdbStore对象。 |
122 123 124 125 126

**错误码:**

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

L
LiRui 已提交
127 128 129 130 131
| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800011     | Failed to open database by database corrupted.              |
| 14800000     | Inner error.                                                |
L
rdb  
lihuihui 已提交
132 133
| 14801001     | Only supported in stage mode.                               |
| 14801002     | The data group id is not valid.                             |
134 135 136 137 138 139 140

**示例:**

FA模型示例:

```js
import featureAbility from '@ohos.ability.featureAbility'
141

142 143
var store;

144
// 获取context
145
let context = featureAbility.getContext();
146 147

const STORE_CONFIG = {
148 149 150
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};
151

152
let promise = relationalStore.getRdbStore(context, STORE_CONFIG);
153
promise.then(async (rdbStore) => {
154 155
  store = rdbStore;
  console.info(`Get RdbStore successfully.`);
156
}).catch((err) => {
G
ge-yafang 已提交
157
  console.error(`Get RdbStore failed, code is ${err.code},message is ${err.message}`);
158 159 160 161 162 163
})
```

Stage模型示例:

```ts
164
import UIAbility from '@ohos.app.ability.UIAbility'
165 166

class EntryAbility extends UIAbility {
167 168 169 170 171 172
  onWindowStageCreate(windowStage) {
    var store;
    const STORE_CONFIG = {
      name: "RdbTest.db",
      securityLevel: relationalStore.SecurityLevel.S1
    };
173
        
174 175 176 177 178
    let promise = relationalStore.getRdbStore(this.context, STORE_CONFIG);
    promise.then(async (rdbStore) => {
      store = rdbStore;
      console.info(`Get RdbStore successfully.`)
    }).catch((err) => {
G
ge-yafang 已提交
179
      console.error(`Get RdbStore failed, code is ${err.code},message is ${err.message}`);
180 181
    })
  }
182 183 184
}
```

185
## relationalStore.deleteRdbStore
186 187 188

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

L
rdb  
lihuihui 已提交
189 190 191
删除数据库文件,使用callback异步回调。

删除成功后,建议将数据库对象置为null。
192 193 194 195 196 197 198

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                                                         |
| -------- | ------------------------- | ---- | ------------------------------------------------------------ |
W
wangxiyue 已提交
199
| context  | Context                   | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
200 201 202 203 204 205 206
| name     | string                    | 是   | 数据库名称。                                                 |
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。                                       |

**错误码:**

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

L
LiRui 已提交
207 208 209 210
| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800000     | Inner error.                                                |
211 212 213 214 215 216 217

**示例:**

FA模型示例:

```js
import featureAbility from '@ohos.ability.featureAbility'
218

219 220
var store;

221
// 获取context
222 223
let context = featureAbility.getContext()

224 225
relationalStore.deleteRdbStore(context, "RdbTest.db", function (err) {
  if (err) {
L
delete  
lihuihui 已提交
226
    console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
227 228
    return;
  }
L
rdb  
lihuihui 已提交
229
  store = null;
230
  console.info(`Delete RdbStore successfully.`);
231 232 233 234 235 236
})
```

Stage模型示例:

```ts
237
import UIAbility from '@ohos.app.ability.UIAbility'
238

239 240
var store;

241
class EntryAbility extends UIAbility {
242 243 244
  onWindowStageCreate(windowStage){
    relationalStore.deleteRdbStore(this.context, "RdbTest.db", function (err) {
      if (err) {
L
delete  
lihuihui 已提交
245
        console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
246 247
        return;
      }
L
rdb  
lihuihui 已提交
248
      store = null;
249 250 251
      console.info(`Delete RdbStore successfully.`);
    })
  }
252 253 254
}
```

255
## relationalStore.deleteRdbStore
256 257 258 259 260

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

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

L
rdb  
lihuihui 已提交
261
删除成功后,建议将数据库对象置为null。
L
rdb  
lihuihui 已提交
262

263 264 265 266 267 268
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数**

| 参数名  | 类型    | 必填 | 说明                                                         |
| ------- | ------- | ---- | ------------------------------------------------------------ |
W
wangxiyue 已提交
269
| context | Context | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
270 271 272 273 274 275 276 277 278 279 280 281
| name    | string  | 是   | 数据库名称。                                                 |

**返回值**

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

**错误码:**

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

L
LiRui 已提交
282 283 284 285
| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800000     | Inner error.                                                |
286 287 288 289 290 291 292

**示例:**

FA模型示例:

```js
import featureAbility from '@ohos.ability.featureAbility'
293

294 295
var store;

296
// 获取context
297
let context = featureAbility.getContext();
298

299
let promise = relationalStore.deleteRdbStore(context, "RdbTest.db");
300
promise.then(()=>{
L
rdb  
lihuihui 已提交
301
  store = null;
302
  console.info(`Delete RdbStore successfully.`);
303
}).catch((err) => {
L
delete  
lihuihui 已提交
304
  console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
305 306 307 308 309 310
})
```

Stage模型示例:

```ts
311
import UIAbility from '@ohos.app.ability.UIAbility'
312

313 314
var store;

315
class EntryAbility extends UIAbility {
316 317 318
  onWindowStageCreate(windowStage){
    let promise = relationalStore.deleteRdbStore(this.context, "RdbTest.db");
    promise.then(()=>{
L
rdb  
lihuihui 已提交
319
      store = null;
L
rdb  
lihuihui 已提交
320
      console.info(`Delete RdbStore successfully.`);
L
rdb  
lihuihui 已提交
321 322
    }).catch((err) => {
      console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
L
rdb  
lihuihui 已提交
323 324 325 326 327
    })
  }
}
```

L
rdb  
lihuihui 已提交
328
## relationalStore.deleteRdbStore<sup>10+</sup>
L
rdb  
lihuihui 已提交
329

L
rdb  
lihuihui 已提交
330
deleteRdbStore(context: Context, config: StoreConfig, callback: AsyncCallback\<void>): void
331

L
rdb  
lihuihui 已提交
332 333 334
使用指定的数据库文件配置删除数据库,使用callback异步回调。

删除成功后,建议将数据库对象置为null。若数据库文件处于公共沙箱目录下,则删除数据库时必须使用该接口,当存在多个进程操作同一个数据库的情况,建议向其他进程发送数据库删除通知使其感知并处理。
335 336 337

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

L
rdb  
lihuihui 已提交
338
**参数:**
339

L
rdb  
lihuihui 已提交
340 341 342 343 344
| 参数名   | 类型                        | 必填 | 说明                                                         |
| -------- | --------------------------- | ---- | ------------------------------------------------------------ |
| context  | Context                     | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
| config   | [StoreConfig](#storeconfig) | 是   | 与此RDB存储相关的数据库配置。                                |
| callback | AsyncCallback&lt;void&gt;   | 是   | 指定callback回调函数。                                       |
345 346 347 348 349

**错误码:**

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

L
LiRui 已提交
350 351 352 353
| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800000     | Inner error.                                                |
L
rdb  
lihuihui 已提交
354 355
| 14801001     | Only supported in stage mode.                               |
| 14801002     | The data group id is not valid.                             |
356 357 358 359 360 361 362

**示例:**

FA模型示例:

```js
import featureAbility from '@ohos.ability.featureAbility'
363

364 365
var store;

366
// 获取context
L
rdb  
lihuihui 已提交
367 368 369 370 371
let context = featureAbility.getContext()
const STORE_CONFIG = {
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};
372

L
rdb  
lihuihui 已提交
373 374 375 376 377
relationalStore.deleteRdbStore(context, STORE_CONFIG, function (err) {
  if (err) {
    console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
    return;
  }
L
rdb  
lihuihui 已提交
378
  store = null;
379
  console.info(`Delete RdbStore successfully.`);
380 381 382 383 384 385
})
```

Stage模型示例:

```ts
386
import UIAbility from '@ohos.app.ability.UIAbility'
387

388 389
var store;

390
class EntryAbility extends UIAbility {
391
  onWindowStageCreate(windowStage){
L
rdb  
lihuihui 已提交
392 393 394 395 396 397 398 399 400
    const STORE_CONFIG = {
      name: "RdbTest.db",
      securityLevel: relationalStore.SecurityLevel.S1
    };
    relationalStore.deleteRdbStore(this.context, STORE_CONFIG, function (err) {
      if (err) {
        console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
        return;
      }
L
rdb  
lihuihui 已提交
401
      store = null;
402 403 404
      console.info(`Delete RdbStore successfully.`);
    })
  }
405 406 407
}
```

L
rdb  
lihuihui 已提交
408
## relationalStore.deleteRdbStore<sup>10+</sup>
L
rdb  
lihuihui 已提交
409

L
rdb  
lihuihui 已提交
410
deleteRdbStore(context: Context, config: StoreConfig): Promise\<void>
L
rdb  
lihuihui 已提交
411

L
rdb  
lihuihui 已提交
412 413 414
使用指定的数据库文件配置删除数据库,使用Promise异步回调。

删除成功后,建议将数据库对象置为null。若数据库文件处于公共沙箱目录下,则删除数据库时必须使用该接口,当存在多个进程操作同一个数据库的情况,建议向其他进程发送数据库删除通知使其感知并处理。
L
rdb  
lihuihui 已提交
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438

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

**参数**

| 参数名  | 类型                        | 必填 | 说明                                                         |
| ------- | --------------------------- | ---- | ------------------------------------------------------------ |
| context | Context                     | 是   | 应用的上下文。 <br>FA模型的应用Context定义见[Context](js-apis-inner-app-context.md)<br>Stage模型的应用Context定义见[Context](js-apis-inner-application-uiAbilityContext.md)。 |
| config  | [StoreConfig](#storeconfig) | 是   | 与此RDB存储相关的数据库配置。                                |

**返回值**

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

**错误码:**

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

| **错误码ID** | **错误信息**                                                |
| ------------ | ----------------------------------------------------------- |
| 14800010     | Failed to open or delete database by invalid database path. |
| 14800000     | Inner error.                                                |
L
rdb  
lihuihui 已提交
439 440
| 14801001     | Only supported in stage mode.                               |
| 14801002     | The data group id is not valid.                             |
L
rdb  
lihuihui 已提交
441 442 443 444 445 446 447 448

**示例:**

FA模型示例:

```js
import featureAbility from '@ohos.ability.featureAbility'

449 450
var store;

L
rdb  
lihuihui 已提交
451 452 453 454 455 456 457 458 459
// 获取context
let context = featureAbility.getContext();
const STORE_CONFIG = {
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};

let promise = relationalStore.deleteRdbStore(context, STORE_CONFIG);
promise.then(()=>{
L
rdb  
lihuihui 已提交
460
  store = null;
L
rdb  
lihuihui 已提交
461 462 463 464 465 466 467 468 469 470 471
  console.info(`Delete RdbStore successfully.`);
}).catch((err) => {
  console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
})
```

Stage模型示例:

```ts
import UIAbility from '@ohos.app.ability.UIAbility'

472 473
var store;

L
rdb  
lihuihui 已提交
474 475 476 477 478 479 480 481
class EntryAbility extends UIAbility {
  onWindowStageCreate(windowStage){
    const STORE_CONFIG = {
      name: "RdbTest.db",
      securityLevel: relationalStore.SecurityLevel.S1
    };
    let promise = relationalStore.deleteRdbStore(this.context, STORE_CONFIG);
    promise.then(()=>{
L
rdb  
lihuihui 已提交
482
      store = null;
483 484
      console.info(`Delete RdbStore successfully.`);
    }).catch((err) => {
L
delete  
lihuihui 已提交
485
      console.error(`Delete RdbStore failed, code is ${err.code},message is ${err.message}`);
486 487
    })
  }
488 489 490
}
```

491
## StoreConfig
492 493 494 495 496 497 498 499

管理关系数据库配置。

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

| 名称        | 类型          | 必填 | 说明                                                      |
| ------------- | ------------- | ---- | --------------------------------------------------------- |
| name          | string        | 是   | 数据库文件名。                                            |
P
PaDaBoo 已提交
500
| securityLevel | [SecurityLevel](#securitylevel) | 是   | 设置数据库安全级别                                        |
L
delete  
lihuihui 已提交
501
| encrypt       | boolean       | 否   | 指定数据库是否加密,默认不加密。<br/> true:加密。<br/> false:非加密。 |
L
rdb  
lihuihui 已提交
502
| dataGroupId<sup>10+</sup> | string | 否 | 应用组ID,需要向应用市场获取。<br/>**模型约束:** 此属性仅在Stage模型下可用。<br/>从API version 10开始,支持此可选参数。指定在此dataGroupId对应的沙箱路径下创建relationalStore实例,当此参数不填时,默认在本应用沙箱目录下创建relationalStore实例。 |
503

504
## SecurityLevel
505 506 507

数据库的安全级别枚举。

L
lihuihui 已提交
508 509
> **说明:**
>
L
query  
lihuihui 已提交
510
> 若需要进行同步操作,数据库安全等级应不高于对端设备安全等级,具体可见[跨设备同步访问控制机制](../../database/sync-app-data-across-devices-overview.md#跨设备同步访问控制机制)。
L
lihuihui 已提交
511

512 513 514 515 516 517 518 519 520
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

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

R
renjiecui 已提交
521 522
## AssetStatus<sup>10+</sup>

R
renjiecui 已提交
523
描述资产附件的状态枚举。请使用枚举名称而非枚举值。
R
renjiecui 已提交
524 525 526 527 528

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

| 名称                              | 值   | 说明             |
| ------------------------------- | --- | -------------- |
R
renjiecui 已提交
529
| ASSET_NORMAL     | -   | 表示资产状态正常。      |
R
renjiecui 已提交
530
| ASSET_INSERT | - | 表示资产需要插入到云端。 |
R
renjiecui 已提交
531
| ASSET_UPDATE | - | 表示资产需要更新到云端。 |
R
renjiecui 已提交
532
| ASSET_DELETE | - | 表示资产需要在云端删除。 |
R
renjiecui 已提交
533 534
| ASSET_ABNORMAL    | -   | 表示资产状态异常。      |
| ASSET_DOWNLOADING | -   | 表示资产正在下载到本地设备。 |
R
renjiecui 已提交
535 536 537

## Asset<sup>10+</sup>

R
renjiecui 已提交
538
记录资产附件(文件、图片、视频等类型文件)的相关信息。资产类型的相关接口暂不支持Datashare。
R
renjiecui 已提交
539 540 541 542 543 544

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

| 名称          | 类型                          | 必填  | 说明           |
| ----------- | --------------------------- | --- | ------------ |
| name        | string                      | 是   | 资产的名称。       |
R
renjiecui 已提交
545 546
| uri         | string                      | 是   | 资产的uri,在系统里的绝对路径。       |
| path        | string                      | 是   | 资产在应用沙箱里的路径。       |
R
renjiecui 已提交
547
| createTime  | string                      | 是   | 资产被创建出来的时间。   |
R
renjiecui 已提交
548
| modifyTime  | string                      | 是   | 资产最后一次被修改的时间。 |
R
renjiecui 已提交
549 550
| size        | string                      | 是   | 资产占用空间的大小。    |
| status      | [AssetStatus](#assetstatus10) | 否   | 资产的状态,默认值为ASSET_NORMAL。        |
R
renjiecui 已提交
551 552 553

## Assets<sup>10+</sup>

R
renjiecui 已提交
554
表示[Asset](#asset10)类型的数组。
R
renjiecui 已提交
555

R
renjiecui 已提交
556 557
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

R
renjiecui 已提交
558 559
| 类型    | 说明                 |
| ------- | -------------------- |
R
renjiecui 已提交
560
| [Asset](#asset10)[] | 表示Asset类型的数组。   |
R
renjiecui 已提交
561

562
## ValueType
563 564 565 566 567 568 569

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

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

| 类型    | 说明                 |
| ------- | -------------------- |
R
renjiecui 已提交
570
| null<sup>10+</sup>    | 表示值类型为空。   |
571 572 573
| number  | 表示值类型为数字。   |
| string  | 表示值类型为字符。   |
| boolean | 表示值类型为布尔值。 |
R
renjiecui 已提交
574
| Uint8Array<sup>10+</sup>           | 表示值类型为Uint8类型的数组。            |
R
renjiecui 已提交
575
| Asset<sup>10+</sup>  | 表示值类型为附件[Asset](#asset10)。     |
R
renjiecui 已提交
576
| Assets<sup>10+</sup> | 表示值类型为附件数组[Assets](#assets10)。 |
577

578
## ValuesBucket
579

W
wangdengze 已提交
580
用于存储键值对的类型。该类型不是多线程安全的,如果应用中存在多线程同时操作该类派生出的实例,注意加锁保护。
581 582 583

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

R
renjiecui 已提交
584 585 586
| 键类型 | 值类型                   |
| ------ | ----------------------- |
| string | [ValueType](#valuetype) |
587

R
renjiecui 已提交
588 589
## PRIKeyType<sup>10+</sup> 

R
renjiecui 已提交
590
用于表示数据库表某一行主键的数据类型。
R
renjiecui 已提交
591 592 593

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

R
renjiecui 已提交
594 595 596
| 类型             | 说明                               |
| ---------------- | ---------------------------------- |
| number \| string | 主键的类型可以是number或者string。 |
R
renjiecui 已提交
597 598 599

## UTCTime<sup>10+</sup>

R
renjiecui 已提交
600
用于表示UTC类型时间的数据类型。
R
renjiecui 已提交
601 602 603 604 605 606 607 608 609

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

| 类型 | 说明            |
| ---- | --------------- |
| Date | UTC类型的时间。 |

## ModifyTime<sup>10+</sup> 

R
renjiecui 已提交
610
用于存储数据库表的主键和修改时间的数据类型。
R
renjiecui 已提交
611 612 613 614 615 616 617

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

| 类型                                                    | 说明                                                         |
| ------------------------------------------------------- | ------------------------------------------------------------ |
| Map<[PRIKeyType](#prikeytype10), [UTCTime](#utctime10)> | 键表示是数据库表某一行的主键,值表示该行的最后修改时间,用UTC格式表示。 |

618
## SyncMode
619 620 621 622 623

指数据库同步模式。

| 名称           | 值   | 说明                               |
| -------------- | ---- | ---------------------------------- |
R
renjiecui 已提交
624 625
| SYNC_MODE_PUSH                       | 0   | 表示数据从本地设备推送到远程设备。<br>**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core                     |
| SYNC_MODE_PULL                       | 1   | 表示数据从远程设备拉至本地设备。<br>**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core                      |
R
renjiecui 已提交
626 627 628
| SYNC_MODE_TIME_FIRST<sup>10+</sup>   | -   | 表示数据从修改时间较近的一端同步到修改时间较远的一端。请使用枚举名称而非枚举值。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client |
| SYNC_MODE_NATIVE_FIRST<sup>10+</sup> | -   | 表示数据从本地设备同步到云端。请使用枚举名称而非枚举值。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client             |
| SYNC_MODE_CLOUD_FIRST<sup>10+</sup>  | -   | 表示数据从云端同步到本地设备。请使用枚举名称而非枚举值。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client             |
629

630
## SubscribeType
631 632 633 634 635 636 637

描述订阅类型。

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

| 名称                  | 值   | 说明               |
| --------------------- | ---- | ------------------ |
L
LiRui 已提交
638 639 640
| SUBSCRIBE_TYPE_REMOTE | 0    | 订阅远程数据更改。<br>**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core |
| SUBSCRIBE_TYPE_CLOUD<sup>10+</sup> | -  | 订阅云端数据更改。请使用枚举名称而非枚举值。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client |
| SUBSCRIBE_TYPE_CLOUD_DETAILS<sup>10+</sup> | -  | 订阅云端数据更改详情。请使用枚举名称而非枚举值。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client |
641

R
renjiecui 已提交
642 643
## ChangeType<sup>10+</sup>

R
renjiecui 已提交
644
描述数据变更类型的枚举。请使用枚举名称而非枚举值。
R
renjiecui 已提交
645 646 647

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

R
renjiecui 已提交
648 649
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

R
renjiecui 已提交
650 651
| 名称                         | 值   | 说明                         |
| -------------------------- | --- | -------------------------- |
R
renjiecui 已提交
652 653
| DATA_CHANGE  | -   | 表示是数据发生变更。   |
| ASSET_CHANGE | -   | 表示是资产附件发生了变更。 |
R
renjiecui 已提交
654 655 656 657 658

## ChangeInfo<sup>10+</sup>

记录端云同步过程详情。

R
renjiecui 已提交
659
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core
R
renjiecui 已提交
660

R
renjiecui 已提交
661 662 663 664 665 666 667
| 名称     | 类型                               | 必填 | 说明                                                         |
| -------- | ---------------------------------- | ---- | ------------------------------------------------------------ |
| table    | string                             | 是   | 表示发生变化的表的名称。                                     |
| type     | [ChangeType](#changetype10)        | 是   | 表示发生变化的数据的类型,数据或者资产附件发生变化。         |
| inserted | Array\<string\> \| Array\<number\> | 是   | 记录插入数据的位置,如果该表的主键是string类型,该值是主键的值,否则该值表示插入数据的行号。 |
| updated  | Array\<string\> \| Array\<number\> | 是   | 记录更新数据的位置,如果该表的主键是string类型,该值是主键的值,否则该值表示更新数据的行号。 |
| deleted  | Array\<string\> \| Array\<number\> | 是   | 记录删除数据的位置,如果该表的主键是string类型,该值是主键的值,否则该值表示删除数据的行号。 |
R
renjiecui 已提交
668 669 670

## DistributedType<sup>10+</sup>

R
renjiecui 已提交
671
描述表的分布式类型的枚举。请使用枚举名称而非枚举值。
R
renjiecui 已提交
672

R
renjiecui 已提交
673 674
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

R
renjiecui 已提交
675 676
| 名称                | 值   | 说明                                                                                                 |
| ------------------ | --- | -------------------------------------------------------------------------------------------------- |
R
renjiecui 已提交
677 678
| DISTRIBUTED_DEVICE | -  | 表示在不同设备之间分布式的数据库表。<br>**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core               |
| DISTRIBUTED_CLOUD  | -   | 表示在设备和云端之间分布式的数据库表。<br>**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client |
R
renjiecui 已提交
679 680 681 682 683 684 685

## DistributedConfig<sup>10+</sup>

记录表的分布式配置信息。

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

R
renjiecui 已提交
686 687
| 名称     | 类型    | 必填 | 说明                                                         |
| -------- | ------- | ---- | ------------------------------------------------------------ |
R
renjiecui 已提交
688
| autoSync | boolean | 是   | 该值为true时,表示该表支持自动同步和手动同步;该值为false时,表示该表只支持手动同步,不支持自动同步。 |
R
renjiecui 已提交
689

L
lihuihui 已提交
690 691 692 693 694 695 696 697
## ConflictResolution<sup>10+</sup>

插入和修改接口的冲突解决方式。

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

| 名称                 | 值   | 说明                                                         |
| -------------------- | ---- | ------------------------------------------------------------ |
P
PaDaBoo 已提交
698
| ON_CONFLICT_NONE | 0 | 表示当冲突发生时,不做任何处理。 |
L
lihuihui 已提交
699 700 701 702 703 704
| ON_CONFLICT_ROLLBACK | 1    | 表示当冲突发生时,中止SQL语句并回滚当前事务。                |
| ON_CONFLICT_ABORT    | 2    | 表示当冲突发生时,中止当前SQL语句,并撤销当前 SQL 语句所做的任何更改,但是由同一事务中先前的 SQL 语句引起的更改被保留并且事务保持活动状态。 |
| ON_CONFLICT_FAIL     | 3    | 表示当冲突发生时,中止当前 SQL 语句。但它不会撤销失败的 SQL 语句的先前更改,也不会结束事务。 |
| ON_CONFLICT_IGNORE   | 4    | 表示当冲突发生时,跳过包含违反约束的行并继续处理 SQL 语句的后续行。 |
| ON_CONFLICT_REPLACE  | 5    | 表示当冲突发生时,在插入或更新当前行之前删除导致约束违例的预先存在的行,并且命令会继续正常执行。 |

R
renjiecui 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
## Progress<sup>10+</sup>

描述端云同步过程的枚举。请使用枚举名称而非枚举值。

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

| 名称             | 值   | 说明                     |
| ---------------- | ---- | ------------------------ |
| SYNC_BEGIN       | -    | 表示端云同步过程开始。   |
| SYNC_IN_PROGRESS | -    | 表示正在端云同步过程中。 |
| SYNC_FINISH      | -    | 表示端云同步过程已完成。 |

## Statistic<sup>10+</sup>

描述数据库表的端云同步过程的统计信息。

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

Y
xiugai  
ylq121 已提交
723 724 725 726 727 728
| 名称       | 类型   | 必填 | 说明                                     |
| ---------- | ------ | ---- | ---------------------------------------- |
| total      | number | 是   | 表示数据库表中需要端云同步的总行数。     |
| successful | number | 是   | 表示数据库表中端云同步成功的行数。       |
| failed     | number | 是   | 表示数据库表中端云同步失败的行数。       |
| remained   | number | 是   | 表示数据库表中端云同步剩余未执行的行数。 |
R
renjiecui 已提交
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746

## TableDetails<sup>10+</sup>

描述数据库表执行端云同步任务上传和下载的统计信息。

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

| 名称     | 类型                      | 必填 | 说明                                       |
| -------- | ------------------------- | ---- | ------------------------------------------ |
| upload   | [Statistic](#statistic10) | 是   | 表示数据库表中端云同步上传过程的统计信息。 |
| download | [Statistic](#statistic10) | 是   | 表示数据库表中端云同步下载过程的统计信息。 |

## ProgressCode<sup>10+</sup>

表示端云同步过程的状态。请使用枚举名称而非枚举值。

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

R
renjiecui 已提交
747 748 749 750 751 752 753 754 755
| 名称                  | 值   | 说明                                                         |
| --------------------- | ---- | ------------------------------------------------------------ |
| SUCCESS               | -    | 表示端云同步过程成功。                                       |
| UNKNOWN_ERROR         | -    | 表示端云同步过程遇到未知错误。                               |
| NETWORK_ERROR         | -    | 表示端云同步过程遇到网络错误。                               |
| CLOUD_DISABLED        | -    | 表示云端不可用。                                             |
| LOCKED_BY_OTHERS      | -    | 表示有其他设备正在端云同步,本设备无法进行端云同步。<br>请确保无其他设备占用云端资源后,再使用本设备进行端云同步任务。 |
| RECORD_LIMIT_EXCEEDED | -    | 表示本次端云同步需要同步的条目或大小超出最大值。由云端配置最大值。 |
| NO_SPACE_FOR_ASSET    | -    | 表示云空间剩余空间小于待同步的资产大小。                     |
R
renjiecui 已提交
756 757 758

## ProgressDetails<sup>10+</sup>

R
renjiecui 已提交
759
描述数据库整体执行端云同步任务上传和下载的统计信息。
R
renjiecui 已提交
760 761 762 763 764 765 766 767 768

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

| 名称     | 类型                                              | 必填 | 说明                                                         |
| -------- | ------------------------------------------------- | ---- | ------------------------------------------------------------ |
| schedule | [Progress](#progress10)                           | 是   | 表示端云同步过程。                                           |
| code     | [ProgressCode](#progresscode10)                   | 是   | 表示端云同步过程的状态。                                     |
| details  | [table: string] : [TableDetails](#tabledetails10) | 是   | 表示端云同步各表的统计信息。<br>键表示表名,值表示该表的端云同步过程统计信息。 |

769
## RdbPredicates
770

W
wangdengze 已提交
771
表示关系型数据库(RDB)的谓词。该类确定RDB中条件表达式的值是true还是false。该类型不是多线程安全的,如果应用中存在多线程同时操作该类派生出的实例,注意加锁保护。
772

773
### constructor
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789

constructor(name: string)

构造函数。

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

**参数:**

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

**示例:**

```js
790
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
791 792
```

793
### inDevices
794 795 796 797 798

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

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

L
device  
lihuihui 已提交
799 800
> **说明:**
>
M
marui 已提交
801
> 其中devices通过调用[deviceManager.getAvailableDeviceListSync](js-apis-distributedDeviceManager.md#getAvailableDeviceListSync)方法得到。数据库同步时调用Sync接口,需要在入参谓词中调用inDevices接口选择设备。如果不调用inDevices接口即默认连接组网内所有的设备。
L
device  
lihuihui 已提交
802

803 804 805 806 807 808 809 810 811 812 813 814
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**参数:**

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

**返回值**

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

**示例:**

```js
L
device  
lihuihui 已提交
820 821
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
822
let deviceIds = [];
L
device  
lihuihui 已提交
823 824 825 826 827 828 829

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
830
    let devices = dmInstance.getAvailableDeviceListSync();
L
device  
lihuihui 已提交
831
    for (var i = 0; i < devices.length; i++) {
M
marui 已提交
832
        deviceIds[i] = devices[i].networkId;
L
device  
lihuihui 已提交
833 834 835
    }
})
                                  
836
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
L
device  
lihuihui 已提交
837
predicates.inDevices(deviceIds);
838 839
```

840
### inAllDevices
841 842 843 844 845 846

inAllDevices(): RdbPredicates


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

M
marui 已提交
847 848 849 850
> **说明:**
>
>如果不调用inAllDevices接口即默认连接组网内所有的远程设备。

851 852 853 854 855 856
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

**返回值**

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

**示例:**

```js
862 863
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.inAllDevices();
864 865
```

866
### equalTo
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885

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


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

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

**参数:**

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

**返回值**

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

**示例:**

```js
891 892
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "lisi");
893 894 895
```


896
### notEqualTo
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915

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


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

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

**参数:**

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

**返回值**

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

**示例:**

```js
921 922
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.notEqualTo("NAME", "lisi");
923 924 925
```


926
### beginWrap
927 928 929 930 931 932 933 934 935 936 937 938

beginWrap(): RdbPredicates


向谓词添加左括号。

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

**返回值**

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

**示例:**

```js
944
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
945 946 947 948 949 950 951 952
predicates.equalTo("NAME", "lisi")
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```

953
### endWrap
954 955 956 957 958 959 960 961 962 963 964

endWrap(): RdbPredicates

向谓词添加右括号。

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

**返回值**

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

**示例:**

```js
970
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
971 972 973 974 975 976 977 978
predicates.equalTo("NAME", "lisi")
    .beginWrap()
    .equalTo("AGE", 18)
    .or()
    .equalTo("SALARY", 200.5)
    .endWrap()
```

979
### or
980 981 982 983 984 985 986 987 988 989 990

or(): RdbPredicates

将或条件添加到谓词中。

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

**返回值**

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

**示例:**

```js
996
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
997 998 999 1000 1001
predicates.equalTo("NAME", "Lisa")
    .or()
    .equalTo("NAME", "Rose")
```

1002
### and
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013

and(): RdbPredicates

向谓词添加和条件。

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

**返回值**

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

**示例:**

```js
1019
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
1020 1021 1022 1023 1024
predicates.equalTo("NAME", "Lisa")
    .and()
    .equalTo("SALARY", 200.5)
```

1025
### contains
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1049 1050
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.contains("NAME", "os");
1051 1052
```

1053
### beginsWith
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1077 1078
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.beginsWith("NAME", "os");
1079 1080
```

1081
### endsWith
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1105 1106
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.endsWith("NAME", "se");
1107 1108
```

1109
### isNull
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126

isNull(field: string): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例**

```js
1132 1133
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.isNull("NAME");
1134 1135
```

1136
### isNotNull
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153

isNotNull(field: string): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1159 1160
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.isNotNull("NAME");
1161 1162
```

1163
### like
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1187 1188
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.like("NAME", "%os%");
1189 1190
```

1191
### glob
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1215 1216
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.glob("NAME", "?h*g");
1217 1218
```

1219
### between
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1244 1245
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.between("AGE", 10, 50);
1246 1247
```

1248
### notBetween
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1273 1274
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.notBetween("AGE", 10, 50);
1275 1276
```

1277
### greaterThan
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1301 1302
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.greaterThan("AGE", 18);
1303 1304
```

1305
### lessThan
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1329 1330
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.lessThan("AGE", 20);
1331 1332
```

1333
### greaterThanOrEqualTo
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1357 1358
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.greaterThanOrEqualTo("AGE", 18);
1359 1360
```

1361
### lessThanOrEqualTo
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1385 1386
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.lessThanOrEqualTo("AGE", 20);
1387 1388
```

1389
### orderByAsc
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406

orderByAsc(field: string): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1412 1413
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.orderByAsc("NAME");
1414 1415
```

1416
### orderByDesc
1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433

orderByDesc(field: string): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1439 1440
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.orderByDesc("AGE");
1441 1442
```

1443
### distinct
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454

distinct(): RdbPredicates

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

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

**返回值**

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

**示例:**

```js
1460 1461
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose").distinct();
1462 1463
```

1464
### limitAs
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

limitAs(value: number): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1487 1488
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose").limitAs(3);
1489 1490
```

1491
### offsetAs
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508

offsetAs(rowOffset: number): RdbPredicates

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1514 1515
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose").offsetAs(3);
1516 1517
```

1518
### groupBy
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1541 1542
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.groupBy(["AGE", "NAME"]);
1543 1544
```

1545
### indexedBy
1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563

indexedBy(field: string): RdbPredicates

配置RdbPredicates以指定索引列。

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

**参数:**

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

**返回值**


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

**示例:**

```js
1569 1570
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.indexedBy("SALARY_INDEX");
1571 1572
```

1573
### in
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1597 1598
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.in("AGE", [18, 20]);
1599 1600
```

1601
### notIn
1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619

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

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

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

**参数:**

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

**返回值**

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

**示例:**

```js
1625 1626
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.notIn("NAME", ["Lisa", "Rose"]);
1627 1628
```

1629
## RdbStore
1630 1631 1632

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

L
lihuihui 已提交
1633
在使用以下相关接口前,请使用[executeSql](#executesql)接口初始化数据库表结构和相关数据。
1634

1635
### 属性<sup>10+</sup>
L
leiiyb 已提交
1636 1637 1638 1639 1640

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

| 名称         | 类型            | 必填 | 说明                             |
| ------------ | ----------- | ---- | -------------------------------- |
1641 1642 1643 1644 1645 1646
| version<sup>10+</sup>  | number | 是   | 设置和获取数据库版本,值为大于0的正整数。       |

**示例:**

```js
// 设置数据库版本
1647
store.version = 3;
1648
// 获取数据库版本
1649
console.info(`RdbStore version is ${store.version}`);
1650
```
L
leiiyb 已提交
1651

1652
### insert
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667

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

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

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

**参数:**

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

1668 1669 1670 1671
**错误码:**

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

L
LiRui 已提交
1672 1673 1674 1675
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1676

1677 1678 1679 1680
**示例:**

```js
const valueBucket = {
1681 1682 1683 1684 1685 1686 1687
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
store.insert("EMPLOYEE", valueBucket, function (err, rowId) {
  if (err) {
G
ge-yafang 已提交
1688
    console.error(`Insert is failed, code is ${err.code},message is ${err.message}`);
1689 1690 1691
    return;
  }
  console.info(`Insert is successful, rowId = ${rowId}`);
1692 1693 1694
})
```

L
lihuihui 已提交
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
### insert<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                                        | 必填 | 说明                                                       |
| -------- | ------------------------------------------- | ---- | ---------------------------------------------------------- |
| table    | string                                      | 是   | 指定的目标表名。                                           |
| values   | [ValuesBucket](#valuesbucket)               | 是   | 表示要插入到表中的数据行。                                 |
P
PaDaBoo 已提交
1709
| conflict | [ConflictResolution](#conflictresolution10) | 是   | 指定冲突解决方式。                                         |
L
lihuihui 已提交
1710 1711
| callback | AsyncCallback&lt;number&gt;                 | 是   | 指定callback回调函数。如果操作成功,返回行ID;否则返回-1。 |

1712 1713 1714 1715
**错误码:**

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

L
LiRui 已提交
1716 1717 1718 1719
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1720

L
lihuihui 已提交
1721 1722 1723 1724
**示例:**

```js
const valueBucket = {
1725 1726 1727 1728 1729 1730 1731
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
store.insert("EMPLOYEE", valueBucket, relationalStore.ConflictResolution.ON_CONFLICT_REPLACE, function (err, rowId) {
  if (err) {
G
ge-yafang 已提交
1732
    console.error(`Insert is failed, code is ${err.code},message is ${err.message}`);
1733 1734 1735
    return;
  }
  console.info(`Insert is successful, rowId = ${rowId}`);
L
lihuihui 已提交
1736 1737 1738
})
```

1739
### insert
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759

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

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

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

**参数:**

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

**返回值**

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

1760 1761 1762 1763
**错误码:**

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

L
LiRui 已提交
1764 1765 1766 1767
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1768

1769 1770 1771 1772
**示例:**

```js
const valueBucket = {
1773 1774 1775 1776 1777 1778
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let promise = store.insert("EMPLOYEE", valueBucket);
1779
promise.then((rowId) => {
1780 1781
  console.info(`Insert is successful, rowId = ${rowId}`);
}).catch((err) => {
G
ge-yafang 已提交
1782
  console.error(`Insert is failed, code is ${err.code},message is ${err.message}`);
1783 1784 1785
})
```

L
lihuihui 已提交
1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799
### insert<sup>10+</sup>

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

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

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

**参数:**

| 参数名   | 类型                                        | 必填 | 说明                       |
| -------- | ------------------------------------------- | ---- | -------------------------- |
| table    | string                                      | 是   | 指定的目标表名。           |
| values   | [ValuesBucket](#valuesbucket)               | 是   | 表示要插入到表中的数据行。 |
P
PaDaBoo 已提交
1800
| conflict | [ConflictResolution](#conflictresolution10) | 是   | 指定冲突解决方式。         |
L
lihuihui 已提交
1801 1802 1803 1804 1805 1806 1807

**返回值**

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

1808 1809 1810 1811
**错误码:**

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

L
LiRui 已提交
1812 1813 1814 1815
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1816

L
lihuihui 已提交
1817 1818 1819 1820
**示例:**

```js
const valueBucket = {
1821 1822 1823 1824 1825 1826
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let promise = store.insert("EMPLOYEE", valueBucket, relationalStore.ConflictResolution.ON_CONFLICT_REPLACE);
L
lihuihui 已提交
1827
promise.then((rowId) => {
1828 1829
  console.info(`Insert is successful, rowId = ${rowId}`);
}).catch((err) => {
G
ge-yafang 已提交
1830
  console.error(`Insert is failed, code is ${err.code},message is ${err.message}`);
L
lihuihui 已提交
1831 1832 1833
})
```

1834
### batchInsert
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849

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

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

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

**参数:**

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

1850 1851 1852 1853
**错误码:**

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

L
LiRui 已提交
1854 1855 1856 1857
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1858

1859 1860 1861 1862
**示例:**

```js
const valueBucket1 = {
1863 1864 1865 1866 1867
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5])
};
1868
const valueBucket2 = {
1869 1870 1871 1872 1873
  "NAME": "Jack",
  "AGE": 19,
  "SALARY": 101.5,
  "CODES": new Uint8Array([6, 7, 8, 9, 10])
};
1874
const valueBucket3 = {
1875 1876 1877 1878 1879
  "NAME": "Tom",
  "AGE": 20,
  "SALARY": 102.5,
  "CODES": new Uint8Array([11, 12, 13, 14, 15])
};
1880 1881

let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
1882 1883
store.batchInsert("EMPLOYEE", valueBuckets, function(err, insertNum) {
  if (err) {
G
ge-yafang 已提交
1884
    console.error(`batchInsert is failed, code is ${err.code},message is ${err.message}`);
1885 1886 1887
    return;
  }
  console.info(`batchInsert is successful, the number of values that were inserted = ${insertNum}`);
1888 1889 1890
})
```

1891
### batchInsert
1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911

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

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

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

**参数:**

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

**返回值**

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

1912 1913 1914 1915
**错误码:**

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

L
LiRui 已提交
1916 1917 1918 1919
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1920

1921 1922 1923 1924
**示例:**

```js
const valueBucket1 = {
1925 1926 1927 1928 1929
  "NAME": "Lisa",
  "AGE": 18,
  "SALARY": 100.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5])
};
1930
const valueBucket2 = {
1931 1932 1933 1934 1935
  "NAME": "Jack",
  "AGE": 19,
  "SALARY": 101.5,
  "CODES": new Uint8Array([6, 7, 8, 9, 10])
};
1936
const valueBucket3 = {
1937 1938 1939 1940 1941
  "NAME": "Tom",
  "AGE": 20,
  "SALARY": 102.5,
  "CODES": new Uint8Array([11, 12, 13, 14, 15])
};
1942 1943

let valueBuckets = new Array(valueBucket1, valueBucket2, valueBucket3);
1944
let promise = store.batchInsert("EMPLOYEE", valueBuckets);
1945
promise.then((insertNum) => {
1946 1947
  console.info(`batchInsert is successful, the number of values that were inserted = ${insertNum}`);
}).catch((err) => {
G
ge-yafang 已提交
1948
  console.error(`batchInsert is failed, code is ${err.code},message is ${err.message}`);
1949 1950 1951
})
```

1952
### update
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964

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

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

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

**参数:**

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

1968 1969 1970 1971
**错误码:**

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

L
LiRui 已提交
1972 1973 1974 1975
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
1976

1977 1978 1979 1980
**示例:**

```js
const valueBucket = {
1981 1982 1983 1984 1985 1986 1987 1988 1989
  "NAME": "Rose",
  "AGE": 22,
  "SALARY": 200.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
store.update(valueBucket, predicates, function (err, rows) {
  if (err) {
G
ge-yafang 已提交
1990
    console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
1991 1992 1993
    return;
  }
  console.info(`Updated row count: ${rows}`);
1994 1995 1996
})
```

L
lihuihui 已提交
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
### update<sup>10+</sup>

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

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

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

**参数:**

| 参数名     | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| values     | [ValuesBucket](#valuesbucket)               | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
2010
| predicates | [RdbPredicates](#rdbpredicates)            | 是   | RdbPredicates的实例对象指定的更新条件。                      |
P
PaDaBoo 已提交
2011
| conflict   | [ConflictResolution](#conflictresolution10) | 是   | 指定冲突解决方式。                                           |
L
lihuihui 已提交
2012 2013
| callback   | AsyncCallback&lt;number&gt;                 | 是   | 指定的callback回调方法。返回受影响的行数。                   |

2014 2015 2016 2017
**错误码:**

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

L
LiRui 已提交
2018 2019 2020 2021
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2022

L
lihuihui 已提交
2023 2024 2025 2026
**示例:**

```js
const valueBucket = {
2027 2028 2029 2030 2031 2032 2033 2034 2035
  "NAME": "Rose",
  "AGE": 22,
  "SALARY": 200.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
store.update(valueBucket, predicates, relationalStore.ConflictResolution.ON_CONFLICT_REPLACE, function (err, rows) {
  if (err) {
G
ge-yafang 已提交
2036
    console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
2037 2038 2039
    return;
  }
  console.info(`Updated row count: ${rows}`);
L
lihuihui 已提交
2040 2041 2042
})
```

2043
### update
2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055

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

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

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

**参数:**

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

**返回值**

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

2064 2065 2066 2067
**错误码:**

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

L
LiRui 已提交
2068 2069 2070 2071
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2072

2073 2074 2075 2076
**示例:**

```js
const valueBucket = {
2077 2078 2079 2080 2081 2082 2083 2084
  "NAME": "Rose",
  "AGE": 22,
  "SALARY": 200.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
let promise = store.update(valueBucket, predicates);
P
PaDaBoo 已提交
2085
promise.then(async (rows) => {
2086
  console.info(`Updated row count: ${rows}`);
2087
}).catch((err) => {
G
ge-yafang 已提交
2088
  console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
2089 2090 2091
})
```

L
lihuihui 已提交
2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
### update<sup>10+</sup>

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

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

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

**参数:**

| 参数名     | 类型                                        | 必填 | 说明                                                         |
| ---------- | ------------------------------------------- | ---- | ------------------------------------------------------------ |
| values     | [ValuesBucket](#valuesbucket)               | 是   | values指示数据库中要更新的数据行。键值对与数据库表的列名相关联。 |
2105
| predicates | [RdbPredicates](#rdbpredicates)            | 是   | RdbPredicates的实例对象指定的更新条件。                      |
P
PaDaBoo 已提交
2106
| conflict   | [ConflictResolution](#conflictresolution10) | 是   | 指定冲突解决方式。                                           |
L
lihuihui 已提交
2107 2108 2109 2110 2111 2112 2113

**返回值**

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

2114 2115 2116 2117
**错误码:**

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

L
LiRui 已提交
2118 2119 2120 2121
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2122

L
lihuihui 已提交
2123 2124 2125 2126
**示例:**

```js
const valueBucket = {
2127 2128 2129 2130 2131 2132 2133 2134
  "NAME": "Rose",
  "AGE": 22,
  "SALARY": 200.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
let promise = store.update(valueBucket, predicates, relationalStore.ConflictResolution.ON_CONFLICT_REPLACE);
P
PaDaBoo 已提交
2135
promise.then(async (rows) => {
2136
  console.info(`Updated row count: ${rows}`);
L
lihuihui 已提交
2137
}).catch((err) => {
G
ge-yafang 已提交
2138
  console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
L
lihuihui 已提交
2139 2140 2141
})
```

2142
### update
2143 2144 2145 2146 2147 2148 2149

update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback&lt;number&gt;):void

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

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

G
ge-yafang 已提交
2150 2151
**模型约束:** 此接口仅可在Stage模型下可用。

2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
**系统接口:** 此接口为系统接口。

**参数:**

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

2163 2164 2165 2166
**错误码:**

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

L
LiRui 已提交
2167 2168 2169 2170
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2171

2172 2173 2174 2175 2176 2177 2178 2179 2180
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
const valueBucket = {
    "NAME": "Rose",
    "AGE": 22,
    "SALARY": 200.5,
    "CODES": new Uint8Array([1, 2, 3, 4, 5]),
2181 2182 2183 2184 2185
};
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Lisa");
store.update("EMPLOYEE", valueBucket, predicates, function (err, rows) {
  if (err) {
G
ge-yafang 已提交
2186
    console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
2187 2188 2189
    return;
  }
  console.info(`Updated row count: ${rows}`);
2190 2191 2192
})
```

2193
### update
2194 2195 2196 2197 2198 2199 2200

update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates):Promise&lt;number&gt;

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

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

G
ge-yafang 已提交
2201 2202
**模型约束:** 此接口仅可在Stage模型下可用。

2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218
**系统接口:** 此接口为系统接口。

**参数:**

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

**返回值**

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

2219 2220 2221 2222
**错误码:**

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

L
LiRui 已提交
2223 2224 2225 2226
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2227

2228 2229 2230 2231 2232
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
const valueBucket = {
2233 2234 2235 2236 2237 2238 2239 2240
  "NAME": "Rose",
  "AGE": 22,
  "SALARY": 200.5,
  "CODES": new Uint8Array([1, 2, 3, 4, 5]),
};
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Lisa");
let promise = store.update("EMPLOYEE", valueBucket, predicates);
P
PaDaBoo 已提交
2241
promise.then(async (rows) => {
2242
  console.info(`Updated row count: ${rows}`);
2243
}).catch((err) => {
G
ge-yafang 已提交
2244
  console.error(`Updated failed, code is ${err.code},message is ${err.message}`);
2245 2246 2247
})
```

2248
### delete
2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259

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

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

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

**参数:**

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

2263 2264 2265 2266
**错误码:**

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

L
LiRui 已提交
2267 2268 2269 2270
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2271

2272 2273 2274
**示例:**

```js
2275 2276 2277 2278
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
store.delete(predicates, function (err, rows) {
  if (err) {
G
ge-yafang 已提交
2279
    console.error(`Delete failed, code is ${err.code},message is ${err.message}`);
2280 2281 2282
    return;
  }
  console.info(`Delete rows: ${rows}`);
2283 2284 2285
})
```

2286
### delete
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297

delete(predicates: RdbPredicates):Promise&lt;number&gt;

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

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

**参数:**

| 参数名     | 类型                                 | 必填 | 说明                                      |
| ---------- | ------------------------------------ | ---- | ----------------------------------------- |
2298
| predicates | [RdbPredicates](#rdbpredicates) | 是   | RdbPredicates的实例对象指定的删除条件。 |
2299 2300 2301 2302 2303 2304 2305

**返回值**

| 类型                  | 说明                            |
| --------------------- | ------------------------------- |
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |

2306 2307 2308 2309
**错误码:**

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

L
LiRui 已提交
2310 2311 2312 2313
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2314

2315 2316 2317
**示例:**

```js
2318 2319 2320
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Lisa");
let promise = store.delete(predicates);
2321
promise.then((rows) => {
2322
  console.info(`Delete rows: ${rows}`);
2323
}).catch((err) => {
G
ge-yafang 已提交
2324
  console.error(`Delete failed, code is ${err.code},message is ${err.message}`);
2325 2326 2327
})
```

2328
### delete
2329 2330 2331 2332 2333 2334 2335

delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback&lt;number&gt;):void

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

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

G
ge-yafang 已提交
2336 2337
**模型约束:** 此接口仅可在Stage模型下可用。

2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
**系统接口:** 此接口为系统接口。

**参数:**

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

2348 2349 2350 2351
**错误码:**

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

L
LiRui 已提交
2352 2353 2354 2355
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2356

2357 2358 2359 2360
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
2361 2362 2363 2364
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Lisa");
store.delete("EMPLOYEE", predicates, function (err, rows) {
  if (err) {
G
ge-yafang 已提交
2365
    console.error(`Delete failed, code is ${err.code},message is ${err.message}`);
2366 2367 2368
    return;
  }
  console.info(`Delete rows: ${rows}`);
2369 2370 2371
})
```

2372
### delete
2373 2374 2375 2376 2377 2378 2379

delete(table: string, predicates: dataSharePredicates.DataSharePredicates):Promise&lt;number&gt;

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

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

G
ge-yafang 已提交
2380 2381
**模型约束:** 此接口仅可在Stage模型下可用。

2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396
**系统接口:** 此接口为系统接口。

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                          |
| ---------- | ------------------------------------------------------------ | ---- | --------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                              |
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的删除条件。 |

**返回值**

| 类型                  | 说明                            |
| --------------------- | ------------------------------- |
| Promise&lt;number&gt; | Promise对象。返回受影响的行数。 |

2397 2398 2399 2400
**错误码:**

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

L
LiRui 已提交
2401 2402 2403 2404
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
2405

2406 2407 2408 2409
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
2410 2411 2412
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Lisa");
let promise = store.delete("EMPLOYEE", predicates);
2413
promise.then((rows) => {
2414
  console.info(`Delete rows: ${rows}`);
2415
}).catch((err) => {
G
ge-yafang 已提交
2416
  console.error(`Delete failed, code is ${err.code},message is ${err.message}`);
2417 2418 2419
})
```

M
marui 已提交
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
### query<sup>10+</sup>

query(predicates: RdbPredicates, callback: AsyncCallback&lt;ResultSet&gt;):void

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

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| predicates | [RdbPredicates](#rdbpredicates)                         | 是   | RdbPredicates的实例对象指定的查询条件。                   |
| callback   | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |

**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

**示例:**

```js
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose");
store.query(predicates, function (err, resultSet) {
  if (err) {
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
    return;
  }
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2455
  while (resultSet.goToNextRow()) {
M
marui 已提交
2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
})
```

2467
### query
2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478

query(predicates: RdbPredicates, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSet&gt;):void

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

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

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
2479
| predicates | [RdbPredicates](#rdbpredicates)                         | 是   | RdbPredicates的实例对象指定的查询条件。                   |
2480
| columns    | Array&lt;string&gt;                                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。            |
P
PaDaBoo 已提交
2481
| callback   | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
2482

L
LiRui 已提交
2483 2484 2485 2486 2487 2488 2489 2490
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2491 2492 2493
**示例:**

```js
2494 2495 2496 2497
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose");
store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"], function (err, resultSet) {
  if (err) {
G
ge-yafang 已提交
2498
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
2499 2500
    return;
  }
M
MangTsang 已提交
2501 2502
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2503
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2504 2505 2506 2507 2508 2509 2510 2511
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2512 2513 2514
})
```

2515
### query
2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526

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

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

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

**参数:**

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

L
LiRui 已提交
2530 2531 2532 2533 2534 2535 2536 2537
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2538 2539 2540 2541
**返回值**

| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
P
PaDaBoo 已提交
2542
| Promise&lt;[ResultSet](#resultset)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
2543 2544 2545 2546

**示例:**

  ```js
2547 2548 2549
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
predicates.equalTo("NAME", "Rose");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
2550
promise.then((resultSet) => {
M
MangTsang 已提交
2551 2552
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2553
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2554 2555 2556 2557 2558 2559 2560 2561
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2562
}).catch((err) => {
G
ge-yafang 已提交
2563
  console.error(`Query failed, code is ${err.code},message is ${err.message}`);
2564 2565 2566
})
  ```

M
marui 已提交
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
### query<sup>10+</sup>

query(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback&lt;ResultSet&gt;):void

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

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

**模型约束:** 此接口仅可在Stage模型下可用。

**系统接口:** 此接口为系统接口。

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                                            |
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的查询条件。               |
| callback   | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |

**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Rose");
store.query("EMPLOYEE", predicates, function (err, resultSet) {
  if (err) {
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
    return;
  }
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2608
  while (resultSet.goToNextRow()) {
M
marui 已提交
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
})
```

2620
### query
2621 2622 2623 2624 2625 2626 2627

query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSet&gt;):void

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

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

G
ge-yafang 已提交
2628 2629
**模型约束:** 此接口仅可在Stage模型下可用。

2630 2631 2632 2633 2634 2635 2636 2637 2638
**系统接口:** 此接口为系统接口。

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                                        |
| ---------- | ------------------------------------------------------------ | ---- | ----------------------------------------------------------- |
| table      | string                                                       | 是   | 指定的目标表名。                                            |
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的查询条件。               |
| columns    | Array&lt;string&gt;                                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。            |
P
PaDaBoo 已提交
2639
| callback   | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
2640

L
LiRui 已提交
2641 2642 2643 2644 2645 2646 2647 2648
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2649 2650 2651 2652
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
2653 2654 2655 2656
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Rose");
store.query("EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"], function (err, resultSet) {
  if (err) {
G
ge-yafang 已提交
2657
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
2658 2659
    return;
  }
M
MangTsang 已提交
2660 2661
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2662
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2663 2664 2665 2666 2667 2668 2669 2670
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2671 2672 2673
})
```

2674
### query
2675 2676 2677 2678 2679 2680 2681

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

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

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

G
ge-yafang 已提交
2682 2683
**模型约束:** 此接口仅可在Stage模型下可用。

2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697
**系统接口:** 此接口为系统接口。

**参数:**

| 参数名     | 类型                                                         | 必填 | 说明                                             |
| ---------- | ------------------------------------------------------------ | ---- | ------------------------------------------------ |
| table      | string                                                       | 是   | 指定的目标表名。                                 |
| predicates | [dataSharePredicates.DataSharePredicates](js-apis-data-dataSharePredicates.md#datasharepredicates) | 是   | DataSharePredicates的实例对象指定的查询条件。    |
| columns    | Array&lt;string&gt;                                          | 否   | 表示要查询的列。如果值为空,则查询应用于所有列。 |

**返回值**

| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
P
PaDaBoo 已提交
2698
| Promise&lt;[ResultSet](#resultset)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
2699

L
LiRui 已提交
2700 2701 2702 2703 2704 2705 2706 2707
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2708 2709 2710 2711
**示例:**

```js
import dataSharePredicates from '@ohos.data.dataSharePredicates'
2712 2713 2714
let predicates = new dataSharePredicates.DataSharePredicates();
predicates.equalTo("NAME", "Rose");
let promise = store.query("EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
2715
promise.then((resultSet) => {
M
MangTsang 已提交
2716 2717
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2718
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2719 2720 2721 2722 2723 2724 2725 2726
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2727
}).catch((err) => {
G
ge-yafang 已提交
2728
  console.error(`Query failed, code is ${err.code},message is ${err.message}`);
2729 2730 2731
})
```

2732
### remoteQuery
2733 2734 2735 2736 2737

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

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

L
devices  
lihuihui 已提交
2738 2739
> **说明:**
>
M
marui 已提交
2740
> 其中device通过调用[deviceManager.getAvailableDeviceListSync](js-apis-distributedDeviceManager.md#getAvailableDeviceListSync)方法得到。
L
devices  
lihuihui 已提交
2741

L
device  
lihuihui 已提交
2742 2743
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

2744 2745
**参数:**

L
device  
lihuihui 已提交
2746 2747 2748 2749 2750 2751
| 参数名     | 类型                                         | 必填 | 说明                                                      |
| ---------- | -------------------------------------------- | ---- | --------------------------------------------------------- |
| device     | string                                       | 是   | 指定的远程设备ID。                                        |
| table      | string                                       | 是   | 指定的目标表名。                                          |
| predicates | [RdbPredicates](#rdbpredicates)              | 是   | RdbPredicates的实例对象,指定查询的条件。                 |
| columns    | Array&lt;string&gt;                          | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。          |
P
PaDaBoo 已提交
2752
| callback   | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。 |
2753

L
LiRui 已提交
2754 2755 2756 2757 2758 2759 2760 2761
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2762 2763 2764
**示例:**

```js
L
device  
lihuihui 已提交
2765 2766
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
2767
let deviceId = null;
L
device  
lihuihui 已提交
2768 2769 2770 2771 2772 2773 2774

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
2775 2776
    let devices = dmInstance.getAvailableDeviceListSync();
    deviceId = devices[0].networkId;
L
device  
lihuihui 已提交
2777 2778
})

2779 2780
let predicates = new relationalStore.RdbPredicates('EMPLOYEE');
predicates.greaterThan("id", 0);
L
device  
lihuihui 已提交
2781
store.remoteQuery(deviceId, "EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"],
2782
  function(err, resultSet) {
2783
    if (err) {
G
ge-yafang 已提交
2784
      console.error(`Failed to remoteQuery, code is ${err.code},message is ${err.message}`);
2785
      return;
2786
    }
M
MangTsang 已提交
2787 2788
    console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
    // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2789
    while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2790 2791 2792 2793 2794 2795 2796 2797
      const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
      const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
      const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
      const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
      console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
    }
    // 释放数据集的内存
    resultSet.close();
2798 2799
  }
)
2800 2801
```

2802
### remoteQuery
2803 2804 2805 2806 2807

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

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

L
devices  
lihuihui 已提交
2808 2809
> **说明:**
>
M
marui 已提交
2810
> 其中device通过调用[deviceManager.getAvailableDeviceListSync](js-apis-distributedDeviceManager.md#getAvailableDeviceListSync)方法得到。
L
devices  
lihuihui 已提交
2811

L
device  
lihuihui 已提交
2812 2813
**系统能力:** SystemCapability.DistributedDataManager.RelationalStore.Core

2814 2815 2816 2817
**参数:**

| 参数名     | 类型                                 | 必填 | 说明                                             |
| ---------- | ------------------------------------ | ---- | ------------------------------------------------ |
L
device  
lihuihui 已提交
2818
| device     | string                               | 是   | 指定的远程设备ID。                   |
2819
| table      | string                               | 是   | 指定的目标表名。                                 |
2820
| predicates | [RdbPredicates](#rdbpredicates) | 是   | RdbPredicates的实例对象,指定查询的条件。      |
2821 2822 2823 2824 2825 2826
| columns    | Array&lt;string&gt;                  | 是   | 表示要查询的列。如果值为空,则查询应用于所有列。 |

**返回值**

| 类型                                                         | 说明                                               |
| ------------------------------------------------------------ | -------------------------------------------------- |
P
PaDaBoo 已提交
2827
| Promise&lt;[ResultSet](#resultset)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
2828

L
LiRui 已提交
2829 2830 2831 2832 2833 2834 2835 2836
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2837 2838 2839
**示例:**

```js
L
device  
lihuihui 已提交
2840 2841
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
2842
let deviceId = null;
L
device  
lihuihui 已提交
2843 2844 2845 2846 2847 2848 2849

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
2850 2851
    let devices = dmInstance.getAvailableDeviceListSync();
    deviceId = devices[0].networkId;
L
device  
lihuihui 已提交
2852 2853
})

2854 2855
let predicates = new relationalStore.RdbPredicates('EMPLOYEE');
predicates.greaterThan("id", 0);
L
lihuihui 已提交
2856
let promise = store.remoteQuery(deviceId, "EMPLOYEE", predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
2857
promise.then((resultSet) => {
M
MangTsang 已提交
2858 2859
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2860
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2861 2862 2863 2864 2865 2866 2867 2868
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2869
}).catch((err) => {
G
ge-yafang 已提交
2870
  console.error(`Failed to remoteQuery, code is ${err.code},message is ${err.message}`);
2871 2872 2873
})
```

M
marui 已提交
2874
### querySql<sup>10+</sup>
2875

M
marui 已提交
2876
querySql(sql: string, callback: AsyncCallback&lt;ResultSet&gt;):void
M
marui 已提交
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

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

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

**参数:**

| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| sql      | string                                       | 是   | 指定要执行的SQL语句。                                        |
| callback | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。    |

**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

**示例:**

```js
store.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = 'sanguo'", function (err, resultSet) {
  if (err) {
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
    return;
  }
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2907
  while (resultSet.goToNextRow()) {
M
marui 已提交
2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
})
```

2919
### querySql
2920 2921 2922 2923 2924 2925 2926 2927 2928

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

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

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

**参数:**

L
query  
lihuihui 已提交
2929 2930 2931
| 参数名   | 类型                                         | 必填 | 说明                                                         |
| -------- | -------------------------------------------- | ---- | ------------------------------------------------------------ |
| sql      | string                                       | 是   | 指定要执行的SQL语句。                                        |
L
lihuihui 已提交
2932
| bindArgs | Array&lt;[ValueType](#valuetype)&gt;         | 是   | SQL语句中参数的值。该值与sql参数语句中的占位符相对应。当sql参数语句完整时,该参数需为空数组。 |
L
query  
lihuihui 已提交
2933
| callback | AsyncCallback&lt;[ResultSet](#resultset)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ResultSet对象。    |
2934

L
LiRui 已提交
2935 2936 2937 2938 2939 2940 2941 2942
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2943 2944 2945
**示例:**

```js
2946 2947
store.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = ?", ['sanguo'], function (err, resultSet) {
  if (err) {
G
ge-yafang 已提交
2948
    console.error(`Query failed, code is ${err.code},message is ${err.message}`);
2949 2950
    return;
  }
M
MangTsang 已提交
2951 2952
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
2953
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
2954 2955 2956 2957 2958 2959 2960 2961
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
2962 2963 2964
})
```

2965
### querySql
2966 2967 2968 2969 2970 2971 2972 2973 2974

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

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

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

**参数:**

L
query  
lihuihui 已提交
2975 2976 2977 2978
| 参数名   | 类型                                 | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| sql      | string                               | 是   | 指定要执行的SQL语句。                                        |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 否   | SQL语句中参数的值。该值与sql参数语句中的占位符相对应。当sql参数语句完整时,该参数不填。 |
2979 2980 2981 2982 2983

**返回值**

| 类型                                                    | 说明                                               |
| ------------------------------------------------------- | -------------------------------------------------- |
P
PaDaBoo 已提交
2984
| Promise&lt;[ResultSet](#resultset)&gt; | Promise对象。如果操作成功,则返回ResultSet对象。 |
2985

L
LiRui 已提交
2986 2987 2988 2989 2990 2991 2992 2993
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

2994 2995 2996
**示例:**

```js
L
RDB  
lihuihui 已提交
2997
let promise = store.querySql("SELECT * FROM EMPLOYEE CROSS JOIN BOOK WHERE BOOK.NAME = 'sanguo'");
2998
promise.then((resultSet) => {
M
MangTsang 已提交
2999 3000
  console.info(`ResultSet column names: ${resultSet.columnNames}, column count: ${resultSet.columnCount}`);
  // resultSet是一个数据集合的游标,默认指向第-1个记录,有效的数据从0开始。
3001
  while (resultSet.goToNextRow()) {
M
MangTsang 已提交
3002 3003 3004 3005 3006 3007 3008 3009
    const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
    const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
    const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
    const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
    console.info(`id=${id}, name=${name}, age=${age}, salary=${salary}`);
  }
  // 释放数据集的内存
  resultSet.close();
3010
}).catch((err) => {
G
ge-yafang 已提交
3011
  console.error(`Query failed, code is ${err.code},message is ${err.message}`);
3012 3013 3014
})
```

M
marui 已提交
3015
### executeSql<sup>10+</sup>
3016

M
marui 已提交
3017
executeSql(sql: string, callback: AsyncCallback&lt;void&gt;):void
M
marui 已提交
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

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

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

**参数:**

| 参数名   | 类型                                 | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| sql      | string                               | 是   | 指定要执行的SQL语句。                                        |
| callback | AsyncCallback&lt;void&gt;            | 是   | 指定callback回调函数。                                       |

**错误码:**

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

| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |

**示例:**

```js
const SQL_DELETE_TABLE = "DELETE FROM test WHERE name = 'zhangsan'"
store.executeSql(SQL_DELETE_TABLE, function(err) {
  if (err) {
    console.error(`ExecuteSql failed, code is ${err.code},message is ${err.message}`);
    return;
  }
  console.info(`Delete table done.`);
})
```

3052
### executeSql
3053 3054 3055 3056 3057 3058 3059 3060 3061

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

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

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

**参数:**

L
query  
lihuihui 已提交
3062 3063 3064
| 参数名   | 类型                                 | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| sql      | string                               | 是   | 指定要执行的SQL语句。                                        |
L
lihuihui 已提交
3065
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 是   | SQL语句中参数的值。该值与sql参数语句中的占位符相对应。当sql参数语句完整时,该参数需为空数组。 |
L
query  
lihuihui 已提交
3066
| callback | AsyncCallback&lt;void&gt;            | 是   | 指定callback回调函数。                                       |
3067

3068 3069 3070 3071
**错误码:**

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

L
LiRui 已提交
3072 3073 3074 3075
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
3076

3077 3078 3079
**示例:**

```js
L
RDB  
lihuihui 已提交
3080 3081
const SQL_DELETE_TABLE = "DELETE FROM test WHERE name = ?"
store.executeSql(SQL_DELETE_TABLE, ['zhangsan'], function(err) {
3082
  if (err) {
G
ge-yafang 已提交
3083
    console.error(`ExecuteSql failed, code is ${err.code},message is ${err.message}`);
3084 3085
    return;
  }
L
RDB  
lihuihui 已提交
3086
  console.info(`Delete table done.`);
3087 3088 3089
})
```

3090
### executeSql
3091 3092 3093 3094 3095 3096 3097 3098 3099

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

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

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

**参数:**

L
query  
lihuihui 已提交
3100 3101 3102 3103
| 参数名   | 类型                                 | 必填 | 说明                                                         |
| -------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| sql      | string                               | 是   | 指定要执行的SQL语句。                                        |
| bindArgs | Array&lt;[ValueType](#valuetype)&gt; | 否   | SQL语句中参数的值。该值与sql参数语句中的占位符相对应。当sql参数语句完整时,该参数不填。 |
3104 3105 3106 3107 3108 3109 3110

**返回值**

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

3111 3112 3113 3114
**错误码:**

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

L
LiRui 已提交
3115 3116 3117 3118
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
3119

3120 3121 3122
**示例:**

```js
L
RDB  
lihuihui 已提交
3123 3124
const SQL_DELETE_TABLE = "DELETE FROM test WHERE name = 'zhangsan'"
let promise = store.executeSql(SQL_DELETE_TABLE);
3125
promise.then(() => {
L
RDB  
lihuihui 已提交
3126
    console.info(`Delete table done.`);
3127
}).catch((err) => {
G
ge-yafang 已提交
3128
    console.error(`ExecuteSql failed, code is ${err.code},message is ${err.message}`);
3129 3130 3131
})
```

R
renjiecui 已提交
3132 3133
### getModifyTime<sup>10+</sup>

R
renjiecui 已提交
3134
getModifyTime(table: string, columnName: string, primaryKeys: PRIKeyType[], callback: AsyncCallback&lt;ModifyTime&gt;): void
R
renjiecui 已提交
3135

R
renjiecui 已提交
3136
获取数据库表中数据的最后修改时间,使用callback异步回调。
R
renjiecui 已提交
3137 3138 3139 3140 3141

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

**参数:**

R
renjiecui 已提交
3142 3143 3144 3145 3146 3147
| 参数名      | 类型                                             | 必填 | 说明                                                         |
| ----------- | ------------------------------------------------ | ---- | ------------------------------------------------------------ |
| table       | string                                           | 是   | 指定要查询的数据库表的表名。                                 |
| columnName  | string                                           | 是   | 指定要查询的数据库表的列名。                                 |
| primaryKeys | [PRIKeyType](#prikeytype10)[]                    | 是   | 指定要查询的行的主键。<br>如果数据库表无主键,参数columnName需传入"rowid",此时primaryKeys为要查询的数据库表的行号。<br>如果数据库表无主键,参数columnName传入不为"rowid",返回对应的错误码。 |
| callback    | AsyncCallback&lt;[ModifyTime](#modifytime10)&gt; | 是   | 指定callback回调函数。如果操作成功,则返回ModifyTime对象,表示数据的最后修改时间。 |
R
renjiecui 已提交
3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159

**错误码:**

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

| **错误码ID** | **错误信息** |
| ------------ | ------------ |
| 14800000     | Inner error. |

**示例:**

```js
R
renjiecui 已提交
3160
let PRIKey = [1, 4, 2, 3];
M
marui 已提交
3161
store.getModifyTime("cloud_tasks", "uuid", PRIKey, function (err, modifyTime) {
R
renjiecui 已提交
3162 3163 3164 3165
    if (err) {
        console.error(`getModifyTime failed, code is ${err.code},message is ${err.message}`);
        return;
    }
R
renjiecui 已提交
3166 3167 3168 3169 3170 3171
    let size = modifyTime.size();
});
```

### getModifyTime<sup>10+</sup>

R
renjiecui 已提交
3172
getModifyTime(table: string, columnName: string, primaryKeys: PRIKeyType[]): Promise&lt;ModifyTime&gt;
R
renjiecui 已提交
3173

R
renjiecui 已提交
3174
获取数据库表中数据的最后修改时间,使用Promise异步回调。
R
renjiecui 已提交
3175 3176 3177 3178 3179

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

**参数:**

R
renjiecui 已提交
3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190
| 参数名      | 类型                          | 必填 | 说明                                                         |
| ----------- | ----------------------------- | ---- | ------------------------------------------------------------ |
| table       | string                        | 是   | 指定要查询的数据库表的表名。                                 |
| columnName  | string                        | 是   | 指定要查询的数据库表的列名。                                 |
| primaryKeys | [PRIKeyType](#prikeytype10)[] | 是   | 指定要查询的行的主键。<br>如果数据库表无主键,参数columnName需传入"rowid",此时primaryKeys为要查询的数据库表的行号。<br>如果数据库表无主键,参数columnName传入不为"rowid",返回对应的错误码。 |

**返回值**

| 类型                                       | 说明                                                      |
| ------------------------------------------ | --------------------------------------------------------- |
| Promise&lt;[ModifyTime](#modifytime10)&gt; | 返回ModifyTime类型的Promise对象,表示数据最后的修改时间。 |
R
renjiecui 已提交
3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202

**错误码:**

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

| **错误码ID** | **错误信息** |
| ------------ | ------------ |
| 14800000     | Inner error. |

**示例:**

```js
R
renjiecui 已提交
3203
let PRIKey = [1, 2, 3];
M
marui 已提交
3204
store.getModifyTime("cloud_tasks", "uuid", PRIKey).then((modifyTime) => {
R
renjiecui 已提交
3205
    let size = modifyTime.size();
R
renjiecui 已提交
3206 3207
}).catch((err) => {
    console.error(`getModifyTime failed, code is ${err.code},message is ${err.message}`);
R
renjiecui 已提交
3208 3209 3210
});
```

3211
### beginTransaction
3212 3213 3214 3215 3216 3217 3218

beginTransaction():void

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

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

3219 3220 3221 3222
**错误码:**

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

L
LiRui 已提交
3223 3224 3225 3226
| **错误码ID** | **错误信息**                                 |
| ------------ | -------------------------------------------- |
| 14800047     | The WAL file size exceeds the default limit. |
| 14800000     | Inner error.                                 |
3227

3228 3229 3230 3231
**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
3232 3233 3234 3235 3236 3237 3238
let context = featureAbility.getContext();
const STORE_CONFIG = { 
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};
relationalStore.getRdbStore(context, STORE_CONFIG, async function (err, store) {
  if (err) {
G
ge-yafang 已提交
3239
    console.error(`GetRdbStore failed, code is ${err.code},message is ${err.message}`);
3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250
    return;
  }
  store.beginTransaction();
  const valueBucket = {
    "name": "lisi",
	"age": 18,
	"salary": 100.5,
	"blobType": new Uint8Array([1, 2, 3]),
  };
  await store.insert("test", valueBucket);
  store.commit();
3251 3252 3253
})
```

3254
### commit
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265

commit():void

提交已执行的SQL语句。

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
3266 3267 3268 3269 3270 3271 3272
let context = featureAbility.getContext();
const STORE_CONFIG = { 
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};
relationalStore.getRdbStore(context, STORE_CONFIG, async function (err, store) {
  if (err) {
G
ge-yafang 已提交
3273
     console.error(`GetRdbStore failed, code is ${err.code},message is ${err.message}`);
3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284
     return;
  }
  store.beginTransaction();
  const valueBucket = {
	"name": "lisi",
	"age": 18,
	"salary": 100.5,
	"blobType": new Uint8Array([1, 2, 3]),
  };
  await store.insert("test", valueBucket);
  store.commit();
3285 3286 3287
})
```

3288
### rollBack
3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299

rollBack():void

回滚已经执行的SQL语句。

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

**示例:**

```js
import featureAbility from '@ohos.ability.featureAbility'
3300 3301 3302 3303 3304 3305 3306
let context = featureAbility.getContext();
const STORE_CONFIG = { 
  name: "RdbTest.db",
  securityLevel: relationalStore.SecurityLevel.S1
};
relationalStore.getRdbStore(context, STORE_CONFIG, async function (err, store) {
  if (err) {
G
ge-yafang 已提交
3307
    console.error(`GetRdbStore failed, code is ${err.code},message is ${err.message}`);
3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321
    return;
  }
  try {
    store.beginTransaction()
    const valueBucket = {
	  "id": 1,
	  "name": "lisi",
	  "age": 18,
	  "salary": 100.5,
	  "blobType": new Uint8Array([1, 2, 3]),
	};
	await store.insert("test", valueBucket);
    store.commit();
  } catch (err) {
G
ge-yafang 已提交
3322
    console.error(`Transaction failed, code is ${err.code},message is ${err.message}`);
3323 3324
    store.rollBack();
  }
3325 3326 3327
})
```

3328
### backup
3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342

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

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

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

**参数:**

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

L
LiRui 已提交
3343 3344 3345 3346 3347 3348 3349 3350
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3351 3352 3353
**示例:**

```js
3354 3355
store.backup("dbBackup.db", function(err) {
  if (err) {
G
ge-yafang 已提交
3356
    console.error(`Backup failed, code is ${err.code},message is ${err.message}`);
3357 3358 3359
    return;
  }
  console.info(`Backup success.`);
3360 3361 3362
})
```

3363
### backup
3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382

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

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

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

**参数:**

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

**返回值**

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

L
LiRui 已提交
3383 3384 3385 3386 3387 3388 3389 3390
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3391 3392 3393
**示例:**

```js
3394
let promiseBackup = store.backup("dbBackup.db");
3395
promiseBackup.then(()=>{
3396
  console.info(`Backup success.`);
3397
}).catch((err)=>{
G
ge-yafang 已提交
3398
  console.error(`Backup failed, code is ${err.code},message is ${err.message}`);
3399 3400 3401
})
```

3402
### restore
3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416

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

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

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

**参数:**

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

L
LiRui 已提交
3417 3418 3419 3420 3421 3422 3423 3424
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3425 3426 3427
**示例:**

```js
3428 3429
store.restore("dbBackup.db", function(err) {
  if (err) {
G
ge-yafang 已提交
3430
    console.error(`Restore failed, code is ${err.code},message is ${err.message}`);
3431 3432 3433
    return;
  }
  console.info(`Restore success.`);
3434 3435 3436
})
```

3437
### restore
3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456

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

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

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

**参数:**

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

**返回值**

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

L
LiRui 已提交
3457 3458 3459 3460 3461 3462 3463 3464
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3465 3466 3467
**示例:**

```js
3468
let promiseRestore = store.restore("dbBackup.db");
3469
promiseRestore.then(()=>{
3470
  console.info(`Restore success.`);
3471
}).catch((err)=>{
G
ge-yafang 已提交
3472
  console.error(`Restore failed, code is ${err.code},message is ${err.message}`);
3473 3474 3475
})
```

3476
### setDistributedTables
3477 3478 3479

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

R
renjiecui 已提交
3480
设置分布式数据库表,使用callback异步回调。
3481 3482 3483 3484 3485 3486 3487 3488 3489

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

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

**参数:**

| 参数名   | 类型                      | 必填 | 说明                   |
| -------- | ------------------------- | ---- | ---------------------- |
R
renjiecui 已提交
3490
| tables   | Array&lt;string&gt;       | 是   | 要设置的分布式数据库表表名。 |
3491 3492
| callback | AsyncCallback&lt;void&gt; | 是   | 指定callback回调函数。 |

L
LiRui 已提交
3493 3494 3495 3496 3497 3498 3499 3500
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3501 3502 3503
**示例:**

```js
3504 3505
store.setDistributedTables(["EMPLOYEE"], function (err) {
  if (err) {
G
ge-yafang 已提交
3506
    console.error(`SetDistributedTables failed, code is ${err.code},message is ${err.message}`);
3507 3508 3509
    return;
  }
  console.info(`SetDistributedTables successfully.`);
3510 3511 3512
})
```

R
renjiecui 已提交
3513
### setDistributedTables
R
renjiecui 已提交
3514

R
renjiecui 已提交
3515
 setDistributedTables(tables: Array&lt;string&gt;): Promise&lt;void&gt;
R
renjiecui 已提交
3516

R
renjiecui 已提交
3517
设置分布式数据库表,使用Promise异步回调。
R
renjiecui 已提交
3518 3519 3520 3521 3522 3523 3524

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

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

**参数:**

R
renjiecui 已提交
3525 3526
| 参数名 | 类型                     | 必填 | 说明                     |
| ------ | ------------------------ | ---- | ------------------------ |
R
renjiecui 已提交
3527
| tables | ArrayArray&lt;string&gt; | 是   | 要设置的分布式数据库表表名。 |
R
renjiecui 已提交
3528 3529 3530 3531 3532 3533

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
R
renjiecui 已提交
3534 3535 3536

**错误码:**

3537
以下错误码的详细介绍请参见[关系型数据库错误码](../errorcodes/errorcode-data-rdb.md)
R
renjiecui 已提交
3538 3539 3540 3541 3542 3543 3544 3545

| **错误码ID** | **错误信息** |
| ------------ | ------------ |
| 14800000     | Inner error. |

**示例:**

```js
R
renjiecui 已提交
3546 3547
let promise = store.setDistributedTables(["EMPLOYEE"]);
promise.then(() => {
R
renjiecui 已提交
3548
  console.info(`SetDistributedTables successfully.`);
R
renjiecui 已提交
3549 3550
}).catch((err) => {
  console.error(`SetDistributedTables failed, code is ${err.code},message is ${err.message}`);
R
renjiecui 已提交
3551 3552 3553
})
```

R
renjiecui 已提交
3554
### setDistributedTables<sup>10+</sup>
3555

Y
xiugai  
ylq121 已提交
3556 3557 3558 3559 3560 3561 3562 3563 3564 3565
setDistributedTables(tables: Array&lt;string&gt;, type: DistributedType, callback: AsyncCallback&lt;void&gt;): void

设置分布式数据库表,使用callback异步回调。

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

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

**参数:**

Y
xiugai  
ylq121 已提交
3566 3567 3568 3569 3570
| 参数名   | 类型                                  | 必填 | 说明                         |
| -------- | ------------------------------------- | ---- | ---------------------------- |
| tables   | Array&lt;string&gt;                   | 是   | 要设置的分布式数据库表表名。 |
| type     | [DistributedType](#distributedtype10) | 是   | 表的分布式类型。             |
| callback | AsyncCallback&lt;void&gt;             | 是   | 指定callback回调函数。       |
Y
xiugai  
ylq121 已提交
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

**错误码:**

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

| **错误码ID** | **错误信息** |
| ------------ | ------------ |
| 14800000     | Inner error. |
| 14800051     |The type of the distributed table does not match.|

**示例:**

```js
store.setDistributedTables(["EMPLOYEE"], relationalStore.DistributedType.DISTRIBUTED_CLOUD, function (err) {
  if (err) {
    console.error(`SetDistributedTables failed, code is ${err.code},message is ${err.message}`);
    return;
  }
  console.info(`SetDistributedTables successfully.`);
})
```

### 

### setDistributedTables<sup>10+</sup>

setDistributedTables(tables: Array&lt;string&gt;, type: DistributedType, config: DistributedConfig, callback: AsyncCallback&lt;void&gt;): void
3598

R
renjiecui 已提交
3599
设置分布式数据库表,使用callback异步回调。
3600 3601 3602 3603 3604 3605 3606

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

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

**参数:**

R
renjiecui 已提交
3607 3608
| 参数名      | 类型                                  | 必填  | 说明              |
| -------- | ----------------------------------- | --- | --------------- |
R
renjiecui 已提交
3609
| tables   | Array&lt;string&gt;                 | 是   | 要设置的分布式数据库表表名。     |
Y
xiugai  
ylq121 已提交
3610
| type     | [DistributedType](#distributedtype10) | 是   | 表的分布式类型。 |
R
renjiecui 已提交
3611 3612
| config | [DistributedConfig](#distributedconfig10) | 是 | 表的分布式配置信息。 |
| callback | AsyncCallback&lt;void&gt;           | 是   | 指定callback回调函数。 |
3613

Y
xiugai  
ylq121 已提交
3614 3615 3616 3617 3618 3619 3620 3621 3622
**错误码:**

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

| **错误码ID** | **错误信息**                                      |
| ------------ | ------------------------------------------------- |
| 14800000     | Inner error.                                      |
| 14800051     | The type of the distributed table does not match. |

3623 3624 3625
**示例:**

```js
3626 3627 3628
store.setDistributedTables(["EMPLOYEE"], relationalStore.DistributedType.DISTRIBUTED_CLOUD, {
  autoSync: true
}, function (err) {
R
renjiecui 已提交
3629 3630 3631 3632
  if (err) {
    console.error(`SetDistributedTables failed, code is ${err.code},message is ${err.message}`);
    return;
  }
3633
  console.info(`SetDistributedTables successfully.`);
3634 3635
})
```
R
renjiecui 已提交
3636

R
renjiecui 已提交
3637 3638
### setDistributedTables<sup>10+</sup>

Y
xiugai  
ylq121 已提交
3639
 setDistributedTables(tables: Array&lt;string>, type?: DistributedType, config?: DistributedConfig): Promise&lt;void>
R
renjiecui 已提交
3640

R
renjiecui 已提交
3641
设置分布式数据库表,使用Promise异步回调。
R
renjiecui 已提交
3642 3643 3644 3645 3646 3647 3648

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

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

**参数:**

R
renjiecui 已提交
3649 3650
| 参数名 | 类型                                      | 必填 | 说明                                                         |
| ------ | ----------------------------------------- | ---- | ------------------------------------------------------------ |
Y
xiugai  
ylq121 已提交
3651
| tables | Array&lt;string&gt;                       | 是   | 要设置的分布式数据库表表名。                                 |
Y
xiugai  
ylq121 已提交
3652
| type   | [DistributedType](#distributedtype10)     | 否   | 表的分布式类型。默认值是relationalStore.DistributedType.DISTRIBUTED_DEVICE。 |
R
renjiecui 已提交
3653 3654 3655 3656 3657 3658 3659
| config | [DistributedConfig](#distributedconfig10) | 否   | 表的分布式配置信息。不传入时默认autoSync为false,即只支持手动同步。 |

**返回值**

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |
R
renjiecui 已提交
3660

Y
xiugai  
ylq121 已提交
3661 3662 3663 3664 3665 3666 3667 3668 3669
**错误码:**

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

| **错误码ID** | **错误信息**                                      |
| ------------ | ------------------------------------------------- |
| 14800000     | Inner error.                                      |
| 14800051     | The type of the distributed table does not match. |

R
renjiecui 已提交
3670 3671 3672
**示例:**

```js
3673 3674 3675
let promise = store.setDistributedTables(["EMPLOYEE"], relationalStore.DistributedType.DISTRIBUTED_CLOUD, {
  autoSync: true
});
R
renjiecui 已提交
3676
promise.then(() => {
R
renjiecui 已提交
3677
  console.info(`SetDistributedTables successfully.`);
R
renjiecui 已提交
3678 3679
}).catch((err) => {
  console.error(`SetDistributedTables failed, code is ${err.code},message is ${err.message}`);
R
renjiecui 已提交
3680 3681 3682
})
```

3683
### obtainDistributedTableName
3684 3685 3686

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

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

L
device  
lihuihui 已提交
3689 3690
> **说明:**
>
M
marui 已提交
3691
> 其中device通过调用[deviceManager.getAvailableDeviceListSync](js-apis-distributedDeviceManager.md#getAvailableDeviceListSync)方法得到。
L
device  
lihuihui 已提交
3692

L
device  
lihuihui 已提交
3693 3694 3695 3696
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

3697 3698 3699 3700
**参数:**

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

L
LiRui 已提交
3705 3706 3707 3708 3709 3710 3711 3712
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3713 3714 3715
**示例:**

```js
L
device  
lihuihui 已提交
3716 3717
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
3718
let deviceId = null;
L
device  
lihuihui 已提交
3719 3720 3721 3722 3723 3724 3725

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
3726 3727
    let devices = dmInstance.getAvailableDeviceListSync();
    deviceId = devices[0].networkId;
L
device  
lihuihui 已提交
3728 3729 3730
})

store.obtainDistributedTableName(deviceId, "EMPLOYEE", function (err, tableName) {
3731
    if (err) {
G
ge-yafang 已提交
3732
        console.error(`ObtainDistributedTableName failed, code is ${err.code},message is ${err.message}`);
3733
        return;
3734
    }
3735
    console.info(`ObtainDistributedTableName successfully, tableName= ${tableName}`);
3736 3737 3738
})
```

3739
### obtainDistributedTableName
3740 3741 3742

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

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

L
device  
lihuihui 已提交
3745 3746
> **说明:**
>
M
marui 已提交
3747
> 其中device通过调用[deviceManager.getAvailableDeviceListSync](js-apis-distributedDeviceManager.md#getAvailableDeviceListSync)方法得到。
L
device  
lihuihui 已提交
3748

L
device  
lihuihui 已提交
3749 3750 3751 3752
**需要权限:** ohos.permission.DISTRIBUTED_DATASYNC

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

3753 3754
**参数:**

L
devices  
lihuihui 已提交
3755 3756
| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
L
device  
lihuihui 已提交
3757
| device | string | 是   | 远程设备ID。         |
L
devices  
lihuihui 已提交
3758
| table  | string | 是   | 远程设备的本地表名。 |
3759 3760 3761 3762 3763 3764 3765

**返回值**

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

L
LiRui 已提交
3766 3767 3768 3769 3770 3771 3772 3773
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3774 3775 3776
**示例:**

```js
L
device  
lihuihui 已提交
3777 3778
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
3779
let deviceId = null;
L
device  
lihuihui 已提交
3780 3781 3782 3783 3784 3785 3786

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
3787 3788
    let devices = dmInstance.getAvailableDeviceListSync();
    deviceId = devices[0].networkId;
L
device  
lihuihui 已提交
3789 3790 3791
})

let promise = store.obtainDistributedTableName(deviceId, "EMPLOYEE");
3792
promise.then((tableName) => {
3793
  console.info(`ObtainDistributedTableName successfully, tableName= ${tableName}`);
3794
}).catch((err) => {
G
ge-yafang 已提交
3795
  console.error(`ObtainDistributedTableName failed, code is ${err.code},message is ${err.message}`);
3796 3797 3798
})
```

3799
### sync
3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812

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

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

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

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

**参数:**

| 参数名     | 类型                                               | 必填 | 说明                                                         |
| ---------- | -------------------------------------------------- | ---- | ------------------------------------------------------------ |
R
renjiecui 已提交
3813
| mode       | [SyncMode](#syncmode)                             | 是   | 指同步模式。该值可以是relationalStore.SyncMode.SYNC_MODE_PUSH、relationalStore.SyncMode.SYNC_MODE_PULL。                               |
3814
| predicates | [RdbPredicates](#rdbpredicates)               | 是   | 约束同步数据和设备。                                         |
3815 3816
| callback   | AsyncCallback&lt;Array&lt;[string, number]&gt;&gt; | 是   | 指定的callback回调函数,用于向调用者发送同步结果。string:设备ID;number:每个设备同步状态,0表示成功,其他值表示失败。 |

L
LiRui 已提交
3817 3818 3819 3820 3821 3822 3823 3824
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3825 3826 3827
**示例:**

```js
L
device  
lihuihui 已提交
3828 3829
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
3830
let deviceIds = [];
L
device  
lihuihui 已提交
3831 3832 3833 3834 3835 3836 3837

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
3838
    let devices = dmInstance.getAvailableDeviceListSync();
L
device  
lihuihui 已提交
3839
    for (var i = 0; i < devices.length; i++) {
M
marui 已提交
3840
        deviceIds[i] = devices[i].networkId;
L
device  
lihuihui 已提交
3841 3842 3843
    }
})

3844
let predicates = new relationalStore.RdbPredicates('EMPLOYEE');
L
device  
lihuihui 已提交
3845
predicates.inDevices(deviceIds);
3846 3847
store.sync(relationalStore.SyncMode.SYNC_MODE_PUSH, predicates, function (err, result) {
  if (err) {
G
ge-yafang 已提交
3848
    console.error(`Sync failed, code is ${err.code},message is ${err.message}`);
3849 3850 3851 3852 3853 3854
    return;
  }
  console.info(`Sync done.`);
  for (let i = 0; i < result.length; i++) {
    console.info(`device= ${result[i][0]}, status= ${result[i][1]}`);
  }
3855 3856 3857
})
```

3858
### sync
3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871

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

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

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

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

**参数:**

| 参数名     | 类型                                 | 必填 | 说明                           |
| ---------- | ------------------------------------ | ---- | ------------------------------ |
R
renjiecui 已提交
3872
| mode       | [SyncMode](#syncmode)               | 是   | 指同步模式。该值可以是relationalStore.SyncMode.SYNC_MODE_PUSH、relationalStore.SyncMode.SYNC_MODE_PULL。 |
3873
| predicates | [RdbPredicates](#rdbpredicates) | 是   | 约束同步数据和设备。           |
3874 3875 3876 3877 3878 3879 3880

**返回值**

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

L
LiRui 已提交
3881 3882 3883 3884 3885 3886 3887 3888
**错误码:**

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

| **错误码ID** | **错误信息**                 |
| ------------ | ---------------------------- |
| 14800000     | Inner error.                 |

3889 3890 3891
**示例:**

```js
L
device  
lihuihui 已提交
3892 3893
import deviceManager from '@ohos.distributedHardware.deviceManager';
let dmInstance = null;
L
lihuihui 已提交
3894
let deviceIds = [];
L
device  
lihuihui 已提交
3895 3896 3897 3898 3899 3900 3901

deviceManager.createDeviceManager("com.example.appdatamgrverify", (err, manager) => {
    if (err) {
        console.log("create device manager failed, err=" + err);
        return;
    }
    dmInstance = manager;
M
marui 已提交
3902
    let devices = dmInstance.getAvailableDeviceListSync();
L
device  
lihuihui 已提交
3903
    for (var i = 0; i < devices.length; i++) {
M
marui 已提交
3904
        deviceIds[i] = devices[i].networkId;
L
device  
lihuihui 已提交
3905 3906 3907
    }
})

3908
let predicates = new relationalStore.RdbPredicates('EMPLOYEE');
L
device  
lihuihui 已提交
3909
predicates.inDevices(deviceIds);
3910
let promise = store.sync(relationalStore.SyncMode.SYNC_MODE_PUSH, predicates);
W
wangxiyue 已提交
3911
promise.then((result) =>{
3912
  console.info(`Sync done.`);
W
wangxiyue 已提交
3913
  for (let i = 0; i < result.length; i++) {
3914 3915
    console.info(`device= ${result[i][0]}, status= ${result[i][1]}`);
  }
3916
}).catch((err) => {
G
ge-yafang 已提交
3917
  console.error(`Sync failed, code is ${err.code},message is ${err.message}`);
3918 3919 3920
})
```

R
renjiecui 已提交
3921 3922
### cloudSync<sup>10+</sup>

R
renjiecui 已提交
3923
cloudSync(mode: SyncMode, progress: Callback&lt;ProgressDetails&gt;, callback: AsyncCallback&lt;void&gt;): void
R
renjiecui 已提交
3924

R
renjiecui 已提交
3925
手动执行对所有分布式表的端云同步,使用callback异步回调。使用该接口需要实现云服务功能。
R
renjiecui 已提交
3926 3927 3928 3929 3930 3931 3932 3933 3934

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

**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client

**参数:**

| 参数名   | 类型                                                  | 必填 | 说明                                               |
| -------- | ----------------------------------------------------- | ---- | -------------------------------------------------- |
R
renjiecui 已提交
3935
| mode     | [SyncMode](#syncmode)                                 | 是   | 表示数据库的同步模式。                             |
R
renjiecui 已提交
3936 3937 3938 3939 3940
| progress | Callback&lt;[ProgressDetails](#progressdetails10)&gt; | 是   | 用来处理数据库同步详细信息的回调函数。             |
| callback | AsyncCallback&lt;void&gt;                             | 是   | 指定的callback回调函数,用于向调用者发送同步结果。 |

**示例:**

R
renjiecui 已提交
3941
```js
3942
store.cloudSync(relationalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, function (progressDetails) {
R
renjiecui 已提交
3943
    console.info(`Progess: ${progressDetails}`);
R
renjiecui 已提交
3944 3945 3946 3947 3948
}, function (err) {
     if (err) {
         console.error(`Cloud sync failed, code is ${err.code},message is ${err.message}`);
         return;
     }
R
renjiecui 已提交
3949
     console.info('Cloud sync succeeded');
R
renjiecui 已提交
3950 3951 3952 3953 3954
});
```

### cloudSync<sup>10+</sup>

R
renjiecui 已提交
3955
cloudSync(mode: SyncMode, progress: Callback&lt;ProgressDetails&gt;): Promise&lt;void&gt;
R
renjiecui 已提交
3956

R
renjiecui 已提交
3957
手动执行对所有分布式表的端云同步,使用Promise异步回调。使用该接口需要实现云服务功能。
R
renjiecui 已提交
3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977

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

**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client

**参数:**

| 参数名   | 类型                                                  | 必填 | 说明                                   |
| -------- | ----------------------------------------------------- | ---- | -------------------------------------- |
| mode     | [SyncMode](#syncmode)                                 | 是   | 表示数据库的同步模式。                 |
| progress | Callback&lt;[ProgressDetails](#progressdetails10)&gt; | 是   | 用来处理数据库同步详细信息的回调函数。 |

**返回值**

| 类型                | 说明                                    |
| ------------------- | --------------------------------------- |
| Promise&lt;void&gt; | Promise对象,用于向调用者发送同步结果。 |

**示例:**

R
renjiecui 已提交
3978
```js
R
renjiecui 已提交
3979 3980
function progress(progressDetail) {
    console.info(`progress: ${progressDetail}`);
R
renjiecui 已提交
3981 3982
}

3983
store.cloudSync(relationalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, progress).then(() => {
R
renjiecui 已提交
3984 3985 3986
    console.info('Cloud sync succeeded');
}).catch((err) => {
    console.error(`cloudSync failed, code is ${err.code},message is ${err.message}`);
R
renjiecui 已提交
3987 3988 3989 3990 3991
});
```

### cloudSync<sup>10+</sup>

R
renjiecui 已提交
3992
cloudSync(mode: SyncMode, tables: string[], progress: Callback&lt;ProgressDetails&gt;, callback: AsyncCallback&lt;void&gt;): void
R
renjiecui 已提交
3993

R
renjiecui 已提交
3994
手动执行对指定表的端云同步,使用callback异步回调。使用该接口需要实现云服务功能。
R
renjiecui 已提交
3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010

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

**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client

**参数:**

| 参数名   | 类型                                                  | 必填 | 说明                                               |
| -------- | ----------------------------------------------------- | ---- | -------------------------------------------------- |
| mode     | [SyncMode](#syncmode)                                 | 是   | 表示数据库的同步模式。                             |
| tables   | string[]                                              | 是   | 指定同步的表名。                                   |
| progress | Callback&lt;[ProgressDetails](#progressdetails10)&gt; | 是   | 用来处理数据库同步详细信息的回调函数。             |
| callback | AsyncCallback&lt;void&gt;                             | 是   | 指定的callback回调函数,用于向调用者发送同步结果。 |

**示例:**

R
renjiecui 已提交
4011
```js
R
renjiecui 已提交
4012
const tables = ["table1", "table2"];
4013
store.cloudSync(relationalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, tables, function (progressDetails) {
R
renjiecui 已提交
4014
    console.info(`Progess: ${progressDetails}`);
R
renjiecui 已提交
4015 4016 4017 4018 4019
}, function (err) {
     if (err) {
         console.error(`Cloud sync failed, code is ${err.code},message is ${err.message}`);
         return;
     }
R
renjiecui 已提交
4020
     console.info('Cloud sync succeeded');
R
renjiecui 已提交
4021 4022 4023 4024 4025
});
```

### cloudSync<sup>10+</sup>

R
renjiecui 已提交
4026
cloudSync(mode: SyncMode, tables: string[], progress: Callback&lt;ProgressDetails&gt;): Promise&lt;void&gt;
R
renjiecui 已提交
4027

R
renjiecui 已提交
4028
手动执行对指定表的端云同步,使用Promise异步回调。使用该接口需要实现云服务功能。
R
renjiecui 已提交
4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049

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

**系统能力:** SystemCapability.DistributedDataManager.CloudSync.Client

**参数:**

| 参数名   | 类型                                                  | 必填 | 说明                                   |
| -------- | ----------------------------------------------------- | ---- | -------------------------------------- |
| mode     | [SyncMode](#syncmode)                                 | 是   | 表示数据库的同步模式。                 |
| tables   | string[]                                              | 是   | 指定同步的表名。                       |
| progress | Callback&lt;[ProgressDetails](#progressdetails10)&gt; | 是   | 用来处理数据库同步详细信息的回调函数。 |

**返回值**

| 类型                | 说明                                    |
| ------------------- | --------------------------------------- |
| Promise&lt;void&gt; | Promise对象,用于向调用者发送同步结果。 |

**示例:**

R
renjiecui 已提交
4050
```js
R
renjiecui 已提交
4051
const tables = ["table1", "table2"];
R
renjiecui 已提交
4052 4053
function progress(progressDetail) {
    console.info(`progress: ${progressDetail}`);
R
renjiecui 已提交
4054 4055
}

4056
store.cloudSync(relationalStore.SyncMode.SYNC_MODE_CLOUD_FIRST, tables, progress).then(() => {
R
renjiecui 已提交
4057 4058 4059
    console.info('Cloud sync succeeded');
}).catch((err) => {
    console.error(`cloudSync failed, code is ${err.code},message is ${err.message}`);
R
renjiecui 已提交
4060 4061 4062
});
```

4063
### on('dataChange')
4064

R
renjiecui 已提交
4065 4066
on(event: 'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void

R
renjiecui 已提交
4067
注册数据库的数据变更的事件监听。当分布式数据库中的数据发生更改时,将调用回调。
R
renjiecui 已提交
4068 4069 4070 4071 4072 4073 4074 4075

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| event    | string                                                       | 是   | 取值为'dataChange',表示数据更改。                           |
4076
| type     | [SubscribeType](#subscribetype) | 是   | 订阅类型。                                                   |
R
renjiecui 已提交
4077 4078 4079 4080
| observer | Callback&lt;Array&lt;string&gt;&gt;                          | 是   | 指分布式数据库中数据更改事件的观察者。Array&lt;string&gt;为数据库中的数据发生改变的对端设备ID。 |

**示例:**

R
renjiecui 已提交
4081
```js
R
renjiecui 已提交
4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095
function storeObserver(devices) {
  for (let i = 0; i < devices.length; i++) {
    console.info(`device= ${devices[i]} data changed`);
  }
}
try {
  store.on('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
} catch (err) {
  console.error(`Register observer failed, code is ${err.code},message is ${err.message}`);
}
```

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

R
renjiecui 已提交
4096
on(event: 'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;\| Callback&lt;Array&lt;ChangeInfo&gt;&gt;): void
4097

R
renjiecui 已提交
4098
注册数据库的数据变更的事件监听。当分布式数据库中的数据发生更改时,将调用回调。
4099 4100 4101 4102 4103 4104 4105 4106

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

**参数:**

| 参数名   | 类型                                | 必填 | 说明                                        |
| -------- | ----------------------------------- | ---- | ------------------------------------------- |
| event    | string                              | 是   | 取值为'dataChange',表示数据更改。          |
P
PaDaBoo 已提交
4107
| type     | [SubscribeType](#subscribetype)    | 是   | 订阅类型。 |
R
renjiecui 已提交
4108
| observer | Callback&lt;Array&lt;string&gt;&gt; \| Callback&lt;Array&lt;[ChangeInfo](#changeinfo10)&gt;&gt; | 是   | 回调函数。<br>当type为SUBSCRIBE_TYPE_REMOTE,observer类型需为Callback&lt;Array&lt;string&gt;&gt;,其中Array&lt;string&gt;为数据库中的数据发生改变的对端设备ID。<br> 当type为SUBSCRIBE_TYPE_CLOUD,observer类型需为Callback&lt;Array&lt;string&gt;&gt;,其中Array&lt;string&gt;为数据库中的数据发生改变的云端帐号。 <br> 当type为SUBSCRIBE_TYPE_CLOUD_DETAILS,observer类型需为Callback&lt;Array&lt;ChangeInfo&gt;&gt;,其中Array&lt;ChangeInfo&gt;为数据库端云同步过程的详情。 |
4109 4110 4111 4112 4113

**示例:**

```js
function storeObserver(devices) {
4114 4115 4116
  for (let i = 0; i < devices.length; i++) {
    console.info(`device= ${devices[i]} data changed`);
  }
4117 4118
}
try {
4119
  store.on('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
4120
} catch (err) {
G
ge-yafang 已提交
4121
  console.error(`Register observer failed, code is ${err.code},message is ${err.message}`);
4122 4123 4124
}
```

L
rdb  
lihuihui 已提交
4125 4126
### on<sup>10+</sup>

L
rdb  
lihuihui 已提交
4127
on(event: string, interProcess: boolean, observer: Callback\<void>): void
L
rdb  
lihuihui 已提交
4128

L
rdb  
lihuihui 已提交
4129
注册数据库的进程内或者进程间事件监听。当调用[emit](#emit10)接口时,将调用回调。
L
rdb  
lihuihui 已提交
4130 4131 4132 4133 4134

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

**参数:**

L
rdb  
lihuihui 已提交
4135 4136 4137 4138 4139
| 参数名       | 类型            | 必填 | 说明                                                         |
| ------------ | --------------- | ---- | ------------------------------------------------------------ |
| event        | string          | 是   | 订阅事件名称。                                               |
| interProcess | boolean         | 是   | 指定是进程间还是本进程订阅。<br/> true:进程间。<br/> false:本进程。 |
| observer     | Callback\<void> | 是   | 回调函数。                                                   |
L
rdb  
lihuihui 已提交
4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162

**错误码:**

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

| **错误码ID** | **错误信息**                           |
| ------------ | -------------------------------------- |
| 14800000     | Inner error.                           |
| 14800050     | Failed to obtain subscription service. |

**示例:**

```js
function storeObserver() {
    console.info(`storeObserver`);
}
try {
  store.on('storeObserver', false, storeObserver);
} catch (err) {
  console.error(`Register observer failed, code is ${err.code},message is ${err.message}`);
}
```

4163
### off('dataChange')
4164

R
renjiecui 已提交
4165 4166
off(event:'dataChange', type: SubscribeType, observer: Callback&lt;Array&lt;string&gt;&gt;): void

R
renjiecui 已提交
4167
取消数据变更的事件监听。
R
renjiecui 已提交
4168 4169 4170 4171 4172 4173 4174 4175

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

**参数:**

| 参数名   | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| event    | string                                                       | 是   | 取值为'dataChange',表示数据更改。                           |
4176
| type     | [SubscribeType](#subscribetype) | 是   | 订阅类型。                                                   |
R
renjiecui 已提交
4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195
| observer | Callback&lt;Array&lt;string&gt;&gt;                          | 是   | 指已注册的数据更改观察者。Array&lt;string&gt;为数据库中的数据发生改变的对端设备ID。 |

**示例:**

```
function storeObserver(devices) {
  for (let i = 0; i < devices.length; i++) {
    console.info(`device= ${devices[i]} data changed`);
  }
}
try {
  store.off('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
} catch (err) {
  console.error(`Unregister observer failed, code is ${err.code},message is ${err.message}`);
}
```

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

R
renjiecui 已提交
4196
off(event:'dataChange', type: SubscribeType, observer?: Callback&lt;Array&lt;string&gt;&gt;\| Callback&lt;Array&lt;ChangeInfo&gt;&gt;): void
4197

R
renjiecui 已提交
4198
取消数据变更的事件监听。
4199 4200 4201 4202 4203 4204

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

**参数:**

| 参数名   | 类型                                | 必填 | 说明                                        |
P
PaDaBoo 已提交
4205
| -------- | ---------------------------------- | ---- | ------------------------------------------ |
4206
| event    | string                              | 是   | 取值为'dataChange',表示数据更改。          |
P
PaDaBoo 已提交
4207
| type     | [SubscribeType](#subscribetype)     | 是   | 订阅类型。                                 |
R
renjiecui 已提交
4208
| observer | Callback&lt;Array&lt;string&gt;&gt;\| Callback&lt;Array&lt;[ChangeInfo](#changeinfo10)&gt;&gt; | 否 | 回调函数。<br/>当type为SUBSCRIBE_TYPE_REMOTE,observer类型需为Callback&lt;Array&lt;string&gt;&gt;,其中Array&lt;string&gt;为数据库中的数据发生改变的对端设备ID。<br/> 当type为SUBSCRIBE_TYPE_CLOUD,observer类型需为Callback&lt;Array&lt;string&gt;&gt;,其中Array&lt;string&gt;为数据库中的数据发生改变的云端帐号。 <br/> 当type为SUBSCRIBE_TYPE_CLOUD_DETAILS,observer类型需为Callback&lt;Array&lt;ChangeInfo&gt;&gt;,其中Array&lt;ChangeInfo&gt;为数据库端云同步过程的详情。<br> 当observer没有传入时,表示取消当前type类型下所有数据变更的事件监听。 |
4209 4210 4211 4212 4213

**示例:**

```js
function storeObserver(devices) {
4214 4215 4216
  for (let i = 0; i < devices.length; i++) {
    console.info(`device= ${devices[i]} data changed`);
  }
4217 4218
}
try {
4219
  store.off('dataChange', relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE, storeObserver);
4220
} catch (err) {
G
ge-yafang 已提交
4221
  console.error(`Unregister observer failed, code is ${err.code},message is ${err.message}`);
4222 4223 4224
}
```

L
rdb  
lihuihui 已提交
4225 4226
### off<sup>10+</sup>

L
rdb  
lihuihui 已提交
4227
off(event: string, interProcess: boolean, observer?: Callback\<void>): void
L
rdb  
lihuihui 已提交
4228 4229 4230 4231 4232 4233 4234

取消数据变更的事件监听。

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

**参数:**

L
rdb  
lihuihui 已提交
4235 4236 4237 4238 4239
| 参数名       | 类型            | 必填 | 说明                                                         |
| ------------ | --------------- | ---- | ------------------------------------------------------------ |
| event        | string          | 是   | 取消订阅事件名称。                                           |
| interProcess | boolean         | 是   | 指定是进程间还是本进程取消订阅。<br/> true:进程间。<br/> false:本进程。 |
| observer     | Callback\<void> | 否   | 该参数存在,则取消指定Callback监听回调,否则取消该event事件的所有监听回调。 |
L
rdb  
lihuihui 已提交
4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264

**错误码:**

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

| **错误码ID** | **错误信息**                           |
| ------------ | -------------------------------------- |
| 14800000     | Inner error.                           |
| 14800050     | Failed to obtain subscription service. |

**示例:**

```js
function storeObserver() {
    console.info(`storeObserver`);
}
try {
  store.off('storeObserver', false, storeObserver);
} catch (err) {
  console.error(`Register observer failed, code is ${err.code},message is ${err.message}`);
}
```

### emit<sup>10+</sup>

L
rdb  
lihuihui 已提交
4265
emit(event: string): void
L
rdb  
lihuihui 已提交
4266

L
rdb  
lihuihui 已提交
4267
通知通过[on](#on10)注册的进程间或者进程内监听事件。
L
rdb  
lihuihui 已提交
4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                 |
| ------ | ------ | ---- | -------------------- |
| event  | string | 是   | 通知订阅事件的名称。 |

**错误码:**

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

| **错误码ID** | **错误信息**                           |
| ------------ | -------------------------------------- |
| 14800000     | Inner error.                           |
| 14800050     | Failed to obtain subscription service. |

**示例:**

```js
L
rdb  
lihuihui 已提交
4289
store.emit('storeObserver');
L
rdb  
lihuihui 已提交
4290 4291
```

4292
## ResultSet
4293 4294 4295 4296 4297

提供通过查询数据库生成的数据库结果集的访问方法。结果集是指用户调用关系型数据库查询接口之后返回的结果集合,提供了多种灵活的数据访问方式,以便用户获取各项数据。

### 使用说明

4298
首先需要获取resultSet对象。
4299 4300

```js
W
wangxiyue 已提交
4301
let resultSet = null;
4302
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
4303
predicates.equalTo("AGE", 18);
4304
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
W
wangxiyue 已提交
4305 4306
promise.then((result) => {
  resultSet = result;
4307 4308
  console.info(`resultSet columnNames: ${resultSet.columnNames}`);
  console.info(`resultSet columnCount: ${resultSet.columnCount}`);
4309 4310 4311
});
```

4312
### 属性
4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327

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

| 名称         | 类型            | 必填 | 说明                             |
| ------------ | ------------------- | ---- | -------------------------------- |
| columnNames  | Array&lt;string&gt; | 是   | 获取结果集中所有列的名称。       |
| columnCount  | number              | 是   | 获取结果集中的列数。             |
| rowCount     | number              | 是   | 获取结果集中的行数。             |
| rowIndex     | number              | 是   | 获取结果集当前行的索引。         |
| isAtFirstRow | boolean             | 是   | 检查结果集是否位于第一行。       |
| isAtLastRow  | boolean             | 是   | 检查结果集是否位于最后一行。     |
| isEnded      | boolean             | 是   | 检查结果集是否位于最后一行之后。 |
| isStarted    | boolean             | 是   | 检查指针是否移动过。             |
| isClosed     | boolean             | 是   | 检查当前结果集是否关闭。         |

4328
### getColumnIndex
4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353

getColumnIndex(columnName: string): number

根据指定的列名获取列索引。

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

**参数:**

| 参数名     | 类型   | 必填 | 说明                       |
| ---------- | ------ | ---- | -------------------------- |
| columnName | string | 是   | 表示结果集中指定列的名称。 |

**返回值:**

| 类型   | 说明               |
| ------ | ------------------ |
| number | 返回指定列的索引。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
4354
| 14800013     | The column value is null or the column type is incompatible. |
4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365

**示例:**

  ```js
resultSet.goToFirstRow();
const id = resultSet.getLong(resultSet.getColumnIndex("ID"));
const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
  ```

4366
### getColumnName
4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391

getColumnName(columnIndex: number): string

根据指定的列索引获取列名。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                       |
| ----------- | ------ | ---- | -------------------------- |
| columnIndex | number | 是   | 表示结果集中指定列的索引。 |

**返回值:**

| 类型   | 说明               |
| ------ | ------------------ |
| string | 返回指定列的名称。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
4392
| 14800013     | The column value is null or the column type is incompatible. |
4393 4394 4395 4396 4397 4398 4399 4400 4401

**示例:**

  ```js
const id = resultSet.getColumnName(0);
const name = resultSet.getColumnName(1);
const age = resultSet.getColumnName(2);
  ```

4402
### goTo
4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427

goTo(offset:number): boolean

向前或向后转至结果集的指定行,相对于其当前位置偏移。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明                         |
| ------ | ------ | ---- | ---------------------------- |
| offset | number | 是   | 表示相对于当前位置的偏移量。 |

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4428
| 14800012     | The result set is empty or the specified location is invalid. |
4429 4430 4431 4432

**示例:**

  ```js
4433 4434
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise= store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4435
promise.then((resultSet) => {
4436 4437
  resultSet.goTo(1);
  resultSet.close();
4438
}).catch((err) => {
G
ge-yafang 已提交
4439
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4440 4441 4442
});
  ```

4443
### goToRow
4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468

goToRow(position: number): boolean

转到结果集的指定行。

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

**参数:**

| 参数名   | 类型   | 必填 | 说明                     |
| -------- | ------ | ---- | ------------------------ |
| position | number | 是   | 表示要移动到的指定位置。 |

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4469
| 14800012     | The result set is empty or the specified location is invalid. |
4470 4471 4472 4473

**示例:**

  ```js
4474 4475
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4476
promise.then((resultSet) => {
W
wangxiyue 已提交
4477
  resultSet.goToRow(5);
4478
  resultSet.close();
4479
}).catch((err) => {
G
ge-yafang 已提交
4480
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4481 4482 4483
});
  ```

4484
### goToFirstRow
4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504

goToFirstRow(): boolean


转到结果集的第一行。

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

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4505
| 14800012     | The result set is empty or the specified location is invalid. |
4506 4507 4508 4509

**示例:**

  ```js
4510 4511
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4512
promise.then((resultSet) => {
4513 4514
  resultSet.goToFirstRow();
  resultSet.close();
4515
}).catch((err) => {
G
ge-yafang 已提交
4516
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4517 4518 4519
});
  ```

4520
### goToLastRow
4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539

goToLastRow(): boolean

转到结果集的最后一行。

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

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4540
| 14800012     | The result set is empty or the specified location is invalid. |
4541 4542 4543 4544

**示例:**

  ```js
4545 4546
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4547
promise.then((resultSet) => {
4548 4549
  resultSet.goToLastRow();
  resultSet.close();
4550
}).catch((err) => {
G
ge-yafang 已提交
4551
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4552 4553 4554
});
  ```

4555
### goToNextRow
4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574

goToNextRow(): boolean

转到结果集的下一行。

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

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4575
| 14800012     | The result set is empty or the specified location is invalid. |
4576 4577 4578 4579

**示例:**

  ```js
4580 4581
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4582
promise.then((resultSet) => {
4583 4584
  resultSet.goToNextRow();
  resultSet.close();
4585
}).catch((err) => {
G
ge-yafang 已提交
4586
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4587 4588 4589
});
  ```

4590
### goToPreviousRow
4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609

goToPreviousRow(): boolean

转到结果集的上一行。

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

**返回值:**

| 类型    | 说明                                          |
| ------- | --------------------------------------------- |
| boolean | 如果成功移动结果集,则为true;否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4610
| 14800012     | The result set is empty or the specified location is invalid. |
4611 4612 4613 4614

**示例:**

  ```js
4615 4616
let predicates = new relationalStore.RdbPredicates("EMPLOYEE");
let promise = store.query(predicates, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4617
promise.then((resultSet) => {
4618 4619
  resultSet.goToPreviousRow();
  resultSet.close();
4620
}).catch((err) => {
G
ge-yafang 已提交
4621
  console.error(`query failed, code is ${err.code},message is ${err.message}`);
4622 4623 4624
});
  ```

4625
### getBlob
4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644

getBlob(columnIndex: number): Uint8Array

以字节数组的形式获取当前行中指定列的值。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                    |
| ----------- | ------ | ---- | ----------------------- |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

| 类型       | 说明                             |
| ---------- | -------------------------------- |
| Uint8Array | 以字节数组的形式返回指定列的值。 |

L
LiRui 已提交
4645 4646 4647 4648 4649 4650 4651 4652
**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
| 14800013     | The column value is null or the column type is incompatible. |

4653 4654 4655 4656 4657 4658
**示例:**

  ```js
const codes = resultSet.getBlob(resultSet.getColumnIndex("CODES"));
  ```

4659
### getString
4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678

getString(columnIndex: number): string

以字符串形式获取当前行中指定列的值。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                    |
| ----------- | ------ | ---- | ----------------------- |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

| 类型   | 说明                         |
| ------ | ---------------------------- |
| string | 以字符串形式返回指定列的值。 |

L
LiRui 已提交
4679 4680 4681 4682 4683 4684 4685 4686
**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
| 14800013     | The column value is null or the column type is incompatible. |

4687 4688 4689 4690 4691 4692
**示例:**

  ```js
const name = resultSet.getString(resultSet.getColumnIndex("NAME"));
  ```

4693
### getLong
4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708

getLong(columnIndex: number): number

以Long形式获取当前行中指定列的值。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                    |
| ----------- | ------ | ---- | ----------------------- |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

L
int64  
lihuihui 已提交
4709 4710 4711
| 类型   | 说明                                                         |
| ------ | ------------------------------------------------------------ |
| number | 以Long形式返回指定列的值。<br>该接口支持的数据范围是:Number.MIN_SAFE_INTEGER ~ Number.MAX_SAFE_INTEGER,若超出该范围,建议使用[getDouble](#getdouble)。 |
4712

L
LiRui 已提交
4713 4714 4715 4716 4717 4718 4719 4720
**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
| 14800013     | The column value is null or the column type is incompatible. |

4721 4722 4723 4724 4725 4726
**示例:**

  ```js
const age = resultSet.getLong(resultSet.getColumnIndex("AGE"));
  ```

4727
### getDouble
4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746

getDouble(columnIndex: number): number

以double形式获取当前行中指定列的值。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                    |
| ----------- | ------ | ---- | ----------------------- |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

| 类型   | 说明                         |
| ------ | ---------------------------- |
| number | 以double形式返回指定列的值。 |

L
LiRui 已提交
4747 4748 4749 4750 4751 4752 4753 4754
**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
| 14800013     | The column value is null or the column type is incompatible. |

4755 4756 4757 4758 4759 4760
**示例:**

  ```js
const salary = resultSet.getDouble(resultSet.getColumnIndex("SALARY"));
  ```

R
renjiecui 已提交
4761 4762
### getAsset<sup>10+</sup>

R
renjiecui 已提交
4763
getAsset(columnIndex: number): Asset
R
renjiecui 已提交
4764

R
renjiecui 已提交
4765
[Asset](#asset10)形式获取当前行中指定列的值。
R
renjiecui 已提交
4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778

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

**参数:**

| 参数名         | 类型     | 必填  | 说明           |
| ----------- | ------ | --- | ------------ |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

| 类型              | 说明                         |
| --------------- | -------------------------- |
R
renjiecui 已提交
4779
| [Asset](#asset10) | 以Asset形式返回指定列的值。 |
R
renjiecui 已提交
4780 4781 4782 4783 4784 4785 4786

**错误码:**

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

| **错误码ID** | **错误信息**                                                     |
| --------- | ------------------------------------------------------------ |
R
renjiecui 已提交
4787
| 14800013  | The column value is null or the column type is incompatible. |
R
renjiecui 已提交
4788 4789 4790 4791 4792 4793 4794 4795 4796

**示例:**

```js
const doc = resultSet.getAsset(resultSet.getColumnIndex("DOC"));
```

### getAssets<sup>10+</sup>

R
renjiecui 已提交
4797
getAssets(columnIndex: number): Assets
R
renjiecui 已提交
4798

R
renjiecui 已提交
4799
[Assets](#assets10)形式获取当前行中指定列的值。
R
renjiecui 已提交
4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810

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

**参数:**

| 参数名         | 类型     | 必填  | 说明           |
| ----------- | ------ | --- | ------------ |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

R
renjiecui 已提交
4811 4812
| 类型              | 说明                           |
| ---------------- | ---------------------------- |
R
renjiecui 已提交
4813
| [Assets](#assets10)| 以Assets形式返回指定列的值。 |
R
renjiecui 已提交
4814 4815 4816 4817 4818

**错误码:**

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

R
renjiecui 已提交
4819 4820
| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
R
renjiecui 已提交
4821
| 14800013     | The column value is null or the column type is incompatible. |
R
renjiecui 已提交
4822 4823 4824 4825 4826 4827 4828 4829

**示例:**

```js
const docs = resultSet.getAssets(resultSet.getColumnIndex("DOCS"));
```


4830
### isColumnNull
4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855

isColumnNull(columnIndex: number): boolean

检查当前行中指定列的值是否为null。

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

**参数:**

| 参数名      | 类型   | 必填 | 说明                    |
| ----------- | ------ | ---- | ----------------------- |
| columnIndex | number | 是   | 指定的列索引,从0开始。 |

**返回值:**

| 类型    | 说明                                                      |
| ------- | --------------------------------------------------------- |
| boolean | 如果当前行中指定列的值为null,则返回true,否则返回false。 |

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
4856
| 14800013     | The column value is null or the column type is incompatible. |
4857 4858 4859 4860 4861 4862 4863

**示例:**

  ```js
const isColumnNull = resultSet.isColumnNull(resultSet.getColumnIndex("CODES"));
  ```

4864
### close
4865 4866 4867 4868 4869 4870 4871 4872 4873 4874

close(): void

关闭结果集。

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

**示例:**

  ```js
4875 4876
let predicatesClose = new relationalStore.RdbPredicates("EMPLOYEE");
let promiseClose = store.query(predicatesClose, ["ID", "NAME", "AGE", "SALARY", "CODES"]);
4877
promiseClose.then((resultSet) => {
4878
  resultSet.close();
4879
}).catch((err) => {
G
ge-yafang 已提交
4880
  console.error(`resultset close failed, code is ${err.code},message is ${err.message}`);
4881 4882 4883 4884 4885 4886 4887 4888 4889
});
  ```

**错误码:**

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

| **错误码ID** | **错误信息**                                                 |
| ------------ | ------------------------------------------------------------ |
L
LiRui 已提交
4890
| 14800012     | The result set is empty or the specified location is invalid. |