未验证 提交 fd889723 编写于 作者: O openharmony_ci 提交者: Gitee

!10633 [翻译完成】#I5S6NN

Merge pull request !10633 from Annie_wang/PR9712
......@@ -22,7 +22,7 @@ Before you get started, familiarize yourself with the following concepts:
An application that accesses the data or services provided by a data provider. It is also called a client.
- Value bucket (**ValuesBucket**)
- **ValuesBucket**
One or more data records stored in the form of key-value (KV) pairs. The keys are of the string type. The values can be of the number, string, Boolean, or Unit8Array type.
......
......@@ -2,6 +2,8 @@
You can use **DataSharePredicates** to specify conditions for [updating](js-apis-data-dataShare.md#update), [deleting](js-apis-data-dataShare.md#delete), and [querying](js-apis-data-dataShare.md#query) data when **DataShare** is used to manage data.
The APIs provided by **DataSharePredicates** correspond to the filter criteria of the database. Before using the APIs, you need to have basic database knowledge.
> **NOTE**
>
> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
......@@ -22,7 +24,7 @@ Provides methods for setting different **DataSharePredicates** objects.
equalTo(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is equal to the specified value.
Sets a **DataSharePredicates** object to search for the data that is equal to the specified value.
Currently, only the relational database (RDB) and key-value database (KVDB, schema) support this **DataSharePredicates** object.
......@@ -52,7 +54,7 @@ predicates.equalTo("NAME", "Rose")
notEqualTo(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is not equal to the specified value.
Sets a **DataSharePredicates** object to search for the data that is not equal to the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -188,7 +190,7 @@ predicates.equalTo("NAME", "lisi")
contains(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that contains the specified value.
Sets a **DataSharePredicates** object to search for the data that contains the specified value.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -218,7 +220,7 @@ predicates.contains("NAME", "os")
beginsWith(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that begins with the specified value.
Sets a **DataSharePredicates** object to search for the data that begins with the specified value.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -248,7 +250,7 @@ predicates.beginsWith("NAME", "os")
endsWith(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that ends with the specified value.
Sets a **DataSharePredicates** object to search for the data that ends with the specified value.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -278,7 +280,7 @@ predicates.endsWith("NAME", "os")
isNull(field: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data whose value is null.
Sets a **DataSharePredicates** object to search for the data whose value is null.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -307,7 +309,7 @@ predicates.isNull("NAME")
isNotNull(field: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data whose value is not null.
Sets a **DataSharePredicates** object to search for the data whose value is not null.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -336,7 +338,7 @@ predicates.isNotNull("NAME")
like(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is similar to the specified value.
Sets a **DataSharePredicates** object to search for the data that matches the specified wildcard expression.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -347,7 +349,7 @@ Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** o
| Name| Type | Mandatory| Description |
| ------ | ------ | ---- | ---------------------- |
| field | string | Yes | Column name in the database table. |
| value | string | Yes | Value to match.|
| value | string | Yes | Wildcard expression to match.<br>In the expression, '%' represents zero, one, or more digits or characters, and '_' represents a single digit or character. It is case insensitive.|
**Return value**
......@@ -366,7 +368,7 @@ predicates.like("NAME", "%os%")
unlike(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is not not similar to the specified value.
Sets a **DataSharePredicates** object to search for the data that does not match the specified wildcard expression.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -377,7 +379,7 @@ Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** o
| Name| Type | Mandatory| Description |
| ------ | ------ | ---- | ---------------------- |
| field | string | Yes | Column name in the database table. |
| value | string | Yes | Value to match.|
| value | string | Yes | Wildcard expression to match.<br>In the expression, '%' represents zero, one, or more digits or characters, and '_' represents a single digit or character. It is case insensitive.|
**Return value**
......@@ -396,7 +398,7 @@ predicates.unlike("NAME", "%os%")
glob(field: string, value: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the specified string.
Sets a **DataSharePredicates** object to search for the data that matches the specified wildcard expression.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -407,7 +409,7 @@ Currently, only the RDB supports this **DataSharePredicates** object.
| Name| Type | Mandatory| Description |
| ------ | ------ | ---- | ---------------------- |
| field | string | Yes | Column name in the database table. |
| value | string | Yes | Value to match.|
| value | string | Yes | Wildcard expression to match.<br>In the expression, '*' represents zero, one, or more digits or characters, and '?' represents a single digit or character. It is case sensitive.|
**Return value**
......@@ -426,7 +428,7 @@ predicates.glob("NAME", "?h*g")
between(field: string, low: ValueType, high: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is within the specified range.
Sets a **DataSharePredicates** object to search for the data that is within the specified range, including the start and end values.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -457,7 +459,7 @@ predicates.between("AGE", 10, 50)
notBetween(field: string, low: ValueType, high: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is out of the specified range.
Sets a **DataSharePredicates** object to search for the data that is out of the specified range, excluding the start and end values.
Currently, only the RDB supports this **DataSharePredicates** object.
......@@ -488,7 +490,7 @@ predicates.notBetween("AGE", 10, 50)
greaterThan(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is greater than the specified value.
Sets a **DataSharePredicates** object to search for the data that is greater than the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -518,7 +520,7 @@ predicates.greaterThan("AGE", 10)
lessThan(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is less than the specified value.
Sets a **DataSharePredicates** object to search for the data that is less than the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -548,7 +550,7 @@ predicates.lessThan("AGE", 50)
greaterThanOrEqualTo(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is greater than or equal to the specified value.
Sets a **DataSharePredicates** object to search for the data that is greater than or equal to the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -578,7 +580,7 @@ predicates.greaterThanOrEqualTo("AGE", 10)
lessThanOrEqualTo(field: string, value: ValueType): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is less than or equal to the specified value.
Sets a **DataSharePredicates** object to search for the data that is less than or equal to the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -777,7 +779,7 @@ predicates.indexedBy("SALARY_INDEX")
in(field: string, value: Array&lt;ValueType&gt;): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is within the specified value.
Sets a **DataSharePredicates** object to search for the data that is within the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -807,7 +809,7 @@ predicates.in("AGE", [18, 20])
notIn(field: string, value: Array&lt;ValueType&gt;): DataSharePredicates
Sets a **DataSharePredicates** object to match the data that is not in the specified value.
Sets a **DataSharePredicates** object to search for the data that is not in the specified value.
Currently, only the RDB and KVDB (schema) support this **DataSharePredicates** object.
......@@ -837,7 +839,7 @@ predicates.notIn("NAME", ["Lisa", "Rose"])
prefixKey(prefix: string): DataSharePredicates
Sets a **DataSharePredicates** object to match the data with the specified key prefix.
Sets a **DataSharePredicates** object to search for the data with the specified key prefix.
Currently, only the KVDB supports this **DataSharePredicates** object.
......@@ -866,7 +868,7 @@ predicates.prefixKey("NAME")
inKeys(keys: Array&lt;string&gt;): DataSharePredicates
Sets a **DataSharePredicates** object to match the data whose keys are within the given range.
Sets a **DataSharePredicates** object to search for the data whose keys are within the given range.
Currently, only the KVDB supports this **DataSharePredicates** object.
......
# Distributed Data Management<a name="EN-US_TOPIC_0000001096920663"></a>
# Distributed Data Management
## Introduction<a name="section11660541593"></a>
The Distributed Data Management subsystem can persistently store various structured data of a single device and also supports data synchronization and sharing across devices. In this regard, you can seamlessly integrate distributed application data among different devices, ensuring consistent user experience in the same application across these devices.
## Introduction
- Local data management
**Distributed Data Management Subsystem**
This module allows you to store and access structured data on a single device. It uses the SQLite engine to provide the relational database \(RDB\) and preferences database. With these databases, you can persistently store and access app data using different models.
The Distributed Data Management subsystem can persistently store various structured data of a single device and also supports data synchronization and sharing across devices. With the Distributed Data Management subsystem, application data can be seamlessly processed across different devices, ensuring consistent user experience for the same application across devices.
- Distributed data service
**Subsystem Architecture**
This service can synchronize data across devices, so that users can access consistent data on different devices. DDS isolates data based on a triplet of the account, app, and database. DDS synchronizes data between trusted devices to provide the cross-device data access capability.
**Figure 1** Architecture
## Architecture
![](figures/Distributed_data_management_architecture.png)
**Figure 1** Architecture of the Distributed Data Management subsystem<a name="fig4460722185514"></a>
## Directory Structure
![](figures/en-us_image_0000001115748088.png)
## Directory Structure<a name="section161941989596"></a>
Level 1 and 2 directories of the distributed data management subsystem are as follows:
Level 1 and 2 directories of the distributed data management subsystem:
```
distributeddatamgr/ # Distributed data management
├── appdatamgr # Local data management
└── distributeddatamgr # Distributed Data Service
distributeddatamgr/ # Distributed Data Management subsystem
├── data_object # Distributed data object
└── data_share # DataShare
└── datamgr_service # Data service
└── kv_store # Key-value (KV) store
└── preferences # Preferences
└── relational_store # Relational database (RDB) store
third_party/ # Open-source software
├── flatbuffers # flatbuffers code
├── flatbuffers # FlatBuffers code
└── sqlite # SQLite code
```
## Usage<a name="section1312121216216"></a>
### Local Data Management<a name="section129654513264"></a>
- Relational database \(RDB\)
Some basic concepts are as follows:
## Module Description
- **RDB**
### Distributed Data Object
A database created on the basis of relational models. The RDB stores data in rows and columns.
The distributed data object management framework is an object-oriented in-memory data management framework. It provides APIs for basic data object management, such as creating, querying, deleting, modifying, and subscribing to in-memory objects. Moreover, it provides distributed capabilities to implement data object collaboration for the same application between multiple devices that form a Super Device.
- **Result set**
The **Distributed Data Object** module provides JS APIs to help you use distributed data objects like using local data objects. The distributed data objects support basic data types, such as number, string, and Boolean, as well as complex data types, such as array and nested basic types.
A set of query results used to access data. You can access the required data in a result set in flexible modes.
### DataShare
- **SQLite database**
The **DataShare** module allows an application to manage its own data and share data with other applications. Currently, data can be shared only between applications on the same device.
A lightweight RDB in compliance with the atomicity, consistency, isolation, and durability \(ACID\) properties. It is an open-source database.
### DDS
The Distributed Data Service (DDS) implements distributed database collaboration across devices for applications. The DDS isolates data based on a triplet of the account, application, and database. The DDS synchronizes data between trusted devices to provide users with consistent data access experience on different devices.
- Preferences database
### Preferences
Some basic concepts are as follows:
The **Preferences** module allows quick access to data in KV pairs and storage of a small amount of data for local applications. The data is stored in local files and loaded in memory, which allows faster access and higher processing efficiency. Preferences provide non-relational data storage and are not suitable for storing a large amount of data.
- **Key-value database**
1. The **Preferences** module provides APIs for **preferences** operations.
2. You can use **getPreferences()** to load the content of a specified file to a **Preferences** instance. Each file has only one **Preferences** instance. The system stores the instance data in memory through a static container until the app removes the instance from the memory or deletes the file.
3. After obtaining a **Preferences** instance, the app can call the APIs in **Preferences** to read data from or write data to the **Preferences** instance, and call **flush()** to save the instance data to a file.
A database that stores data in key-value pairs. The **key** indicates keyword, and **value** indicates the corresponding value.
### RDB Store
- **Non-relational database**
The RDB manages data based on relational models. The OpenHarmony RDB module provides a complete mechanism for managing local databases based on the underlying SQLite.
A database not in compliance with the atomicity, consistency, isolation, and durability \(ACID\) database management properties of relational data transactions. Instead, the data in a non-relational database is independent and scalable.
With the SQLite as the persistence engine, the RDB module supports all SQLite features, including transactions, indexes, views, triggers, foreign keys, parameterized queries, prepared SQL statements, and more.
- **Preference** **data**
A type of data that is frequently accessed and used.
## Repositories Involved
Distributed Data Management Subsystem
### Distributed Data Service<a name="section1961602912224"></a>
[distributeddatamgr\_data_object](https://gitee.com/openharmony/distributeddatamgr_data_object)
DDS provides apps with the capability to store data in the databases of different devices. It uses the KV data model.
[distributeddatamgr\_data_share](https://gitee.com/openharmony/distributeddatamgr_data_share)
- **KV data model**
[distributeddatamgr\_preferences](https://gitee.com/openharmony/distributeddatamgr_preferences)
KV is short for key-value. The KV database is a type of NoSQL database. Data in this type of database is organized, indexed, and stored in the form of key-value pairs.
[distributeddatamgr\_relational_store](https://gitee.com/openharmony/distributeddatamgr_relational_store)
The KV data model is suitable for storing service data that does not involve too many data or service relationships. It provides better read and write performance than the SQL database. The KV data model is widely used in distributed scenarios because it handles conflict more easily in database version compatibility and data synchronization. The distributed database is based on the KV data model and provides KV-based access interfaces.
## Repositories Involved<a name="section1371113476307"></a>
Distributed Data Management subsystem
[distributeddatamgr\_appdatamgr](https://gitee.com/openharmony/distributeddatamgr_appdatamgr)
[distributeddatamgr\_distributeddatamgr](https://gitee.com/openharmony/distributeddatamgr_datamgr)
[distributeddatamgr\_kv_store](https://gitee.com/openharmony/distributeddatamgr_kv_store)
[third\_party\_sqlite](https://gitee.com/openharmony/third_party_sqlite)
[third\_party\_flatbuffers](https://gitee.com/openharmony/third_party_flatbuffers)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册