• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Rdb_ChangeInfo
2
3## Overview
4
5Defines a struct for the details about the device-cloud sync process.
6
7**Since**: 11
8
9**Related module**: [RDB](capi-rdb.md)
10
11**Header file**: [relational_store.h](capi-relational-store-h.md)
12
13## Summary
14
15### Member Variables
16
17| Name                                       | Description                                                        |
18| ------------------------------------------- | ------------------------------------------------------------ |
19| int version                                 | Version of the **Rdb_DistributedConfig** struct.               |
20| const char* tableName                       | Name of the table with data changes.                                    |
21| int ChangeType                              | Type of the data changed, which can be data or asset.        |
22| [Rdb_KeyInfo](capi-rdb-rdb-keyinfo.md) inserted | Location where data is inserted. If the primary key of the table is of the string type, it is the value of the primary key. Otherwise, it is the row number of the inserted data.|
23| [Rdb_KeyInfo](capi-rdb-rdb-keyinfo.md) updated  | Location where data is updated. If the primary key of the table is of the string type, it is the value of the primary key. Otherwise, it is the row number of the updated data.|
24| [Rdb_KeyInfo](capi-rdb-rdb-keyinfo.md) deleted  | Location where data is deleted. If the primary key of the table is of the string type, it is the value of the primary key. Otherwise, it is the row number of the deleted data.|
25