harmony 鸿蒙@ohos.data.ValuesBucket (Data Set)

  • 2025-06-12
  • 浏览 (5)

@ohos.data.ValuesBucket (Data Set)

ValuesBucket is a dataset in the form of key-value (KV) pairs that can be inserted in the database.

NOTE

  • The initial APIs of this module are supported since API version 10. Newly added APIs will be marked with a superscript to indicate their earliest API version.

  • The APIs of this module can be used only in the stage model.

Modules to Import

import { ValueType, ValuesBucket } from '@kit.ArkData';

ValueType

type ValueType = number|string|boolean

Defines the value types allowed in a ValuesBucket instance.

System capability: SystemCapability.DistributedDataManager.DataShare.Core

Type Description
number The value is a number.
string The value is a string.
boolean The value is true or false.

ValuesBucket

type ValuesBucket = Record

Defines the types of the key and value in a KV pair. This type is not multi-thread safe. If a ValuesBucket instance is operated by multiple threads at the same time in an application, use a lock for it.

System capability: SystemCapability.DistributedDataManager.DataShare.Core

Type Description
Record Types of the key and value in a KV pair. The key type is string, and the value type can be ValueType, Uint8Array, or null.

你可能感兴趣的鸿蒙文章

harmony 鸿蒙ArkData (ArkData Management)

harmony 鸿蒙Data

harmony 鸿蒙OH_Cursor

harmony 鸿蒙OH_Predicates

harmony 鸿蒙OH_Rdb_Config

harmony 鸿蒙OH_Rdb_Store

harmony 鸿蒙OH_VBucket

harmony 鸿蒙OH_VObject

harmony 鸿蒙Preferences

harmony 鸿蒙_r_d_b

0  赞