1| Change Type | Old Version | New Version | d.ts File |
2| ---- | ------ | ------ | -------- |
3|Deleted|Class name: KVStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, observer: Callback\<ChangeNotification>): void;|NA|@ohos.data.distributedData.d.ts|
4|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
5|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
6| Added | NA   | Class name: DataObject; <br>Method or attribute name: setSessionId(sessionId: string, callback: AsyncCallback<void>): void; | @ohos.data.distributedDataObject.d.ts |
7| Added | NA   | Class name: DataObject;<br/> Method or attribute name: setSessionId(sessionId?: string): Promise<void>; | @ohos.data.distributedDataObject.d.ts |
8|Added|NA|Class name: DataObject;<br>Method or attribute name: on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\<string> }>): void;|@ohos.data.distributedDataObject.d.ts|
9|Added|NA|Class name: DataObject;<br>Method or attribute name: on(type: 'status',<br><br>           callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts|
10|Added|NA|Class name: DataObject;<br>Method or attribute name: off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\<string> }>): void;|@ohos.data.distributedDataObject.d.ts|
11|Added|NA|Class name: DataObject;<br>Method or attribute name: off(type: 'status',<br><br>            callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;|@ohos.data.distributedDataObject.d.ts|
12|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: context?: ExtensionContext;|@ohos.application.DataShareExtensionAbility.d.ts|
13|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: onCreate?(want: Want, callback: AsyncCallback\<void>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
14|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: insert?(uri: string, valueBucket: ValuesBucket, callback: AsyncCallback\<number>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
15|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: update?(uri: string, predicates: dataSharePredicates.DataSharePredicates, valueBucket: ValuesBucket,<br>        callback: AsyncCallback\<number>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
16|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: delete?(uri: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<number>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
17|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: query?(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\<string>,<br>        callback: AsyncCallback\<Object>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
18|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: batchInsert?(uri: string, valueBuckets: Array\<ValuesBucket>, callback: AsyncCallback\<number>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
19|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: normalizeUri?(uri: string, callback: AsyncCallback\<string>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
20|Added|NA|Class name: DataShareExtensionAbility;<br>Method or attribute name: denormalizeUri?(uri: string, callback: AsyncCallback\<string>): void;|@ohos.application.DataShareExtensionAbility.d.ts|
21|Added|NA|Class name: dataShare;<br>Method or attribute name: function createDataShareHelper(context: Context, uri: string, callback: AsyncCallback\<DataShareHelper>): void;|@ohos.data.dataShare.d.ts|
22|Added|NA|Class name: dataShare;<br>Method or attribute name: function createDataShareHelper(context: Context, uri: string): Promise\<DataShareHelper>;|@ohos.data.dataShare.d.ts|
23|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: on(type: 'dataChange', uri: string, callback: AsyncCallback\<void>): void;|@ohos.data.dataShare.d.ts|
24|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: off(type: 'dataChange', uri: string, callback?: AsyncCallback\<void>): void;|@ohos.data.dataShare.d.ts|
25|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: insert(uri: string, value: ValuesBucket, callback: AsyncCallback\<number>): void;|@ohos.data.dataShare.d.ts|
26|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: insert(uri: string, value: ValuesBucket): Promise\<number>;|@ohos.data.dataShare.d.ts|
27|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: delete(uri: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<number>): void;|@ohos.data.dataShare.d.ts|
28|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: delete(uri: string, predicates: dataSharePredicates.DataSharePredicates): Promise\<number>;|@ohos.data.dataShare.d.ts|
29|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: query(uri: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\<string>,<br>              callback: AsyncCallback\<DataShareResultSet>): void;|@ohos.data.dataShare.d.ts|
30|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: query(uri: string, predicates: dataSharePredicates.DataSharePredicates,<br>              columns: Array\<string>): Promise\<DataShareResultSet>;|@ohos.data.dataShare.d.ts|
31|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket,<br>               callback: AsyncCallback\<number>): void;|@ohos.data.dataShare.d.ts|
32|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: update(uri: string, predicates: dataSharePredicates.DataSharePredicates, value: ValuesBucket): Promise\<number>;|@ohos.data.dataShare.d.ts|
33|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: batchInsert(uri: string, values: Array\<ValuesBucket>, callback: AsyncCallback\<number>): void;|@ohos.data.dataShare.d.ts|
34|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: batchInsert(uri: string, values: Array\<ValuesBucket>): Promise\<number>;|@ohos.data.dataShare.d.ts|
35|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: normalizeUri(uri: string, callback: AsyncCallback\<string>): void;|@ohos.data.dataShare.d.ts|
36|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: normalizeUri(uri: string): Promise\<string>;|@ohos.data.dataShare.d.ts|
37|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: denormalizeUri(uri: string, callback: AsyncCallback\<string>): void;|@ohos.data.dataShare.d.ts|
38|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: denormalizeUri(uri: string): Promise\<string>;|@ohos.data.dataShare.d.ts|
39|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: notifyChange(uri: string, callback: AsyncCallback\<void>): void;|@ohos.data.dataShare.d.ts|
40|Added|NA|Class name: DataShareHelper;<br>Method or attribute name: notifyChange(uri: string): Promise\<void>;|@ohos.data.dataShare.d.ts|
41|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: equalTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
42|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: notEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
43|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: beginWrap(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
44|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: endWrap(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
45|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: or(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
46|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: and(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
47|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: contains(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
48|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: beginsWith(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
49|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: endsWith(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
50|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: isNull(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
51|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: isNotNull(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
52|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: like(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
53|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: unlike(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
54|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: glob(field: string, value: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
55|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: between(field: string, low: ValueType, high: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
56|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: notBetween(field: string, low: ValueType, high: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
57|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: greaterThan(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
58|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: lessThan(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
59|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
60|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: ValueType): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
61|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: orderByAsc(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
62|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: orderByDesc(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
63|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: distinct(): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
64|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: limit(total: number, offset: number): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
65|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: groupBy(fields: Array\<string>): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
66|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: indexedBy(field: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
67|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: in(field: string, value: Array\<ValueType>): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
68|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: notIn(field: string, value: Array\<ValueType>): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
69|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: prefixKey(prefix: string): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
70|Added|NA|Class name: DataSharePredicates;<br>Method or attribute name: inKeys(keys: Array\<string>): DataSharePredicates;|@ohos.data.dataSharePredicates.d.ts|
71|Added|NA|Class name: DataType;<br>Method or attribute name: TYPE_NULL = 0|@ohos.data.DataShareResultSet.d.ts|
72|Added|NA|Class name: DataType;<br>Method or attribute name: TYPE_LONG = 1|@ohos.data.DataShareResultSet.d.ts|
73|Added|NA|Class name: DataType;<br>Method or attribute name: TYPE_DOUBLE = 2|@ohos.data.DataShareResultSet.d.ts|
74|Added|NA|Class name: DataType;<br>Method or attribute name: TYPE_STRING = 3|@ohos.data.DataShareResultSet.d.ts|
75|Added|NA|Class name: DataType;<br>Method or attribute name: TYPE_BLOB = 4|@ohos.data.DataShareResultSet.d.ts|
76|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: columnNames: Array\<string>;|@ohos.data.DataShareResultSet.d.ts|
77|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: columnCount: number;|@ohos.data.DataShareResultSet.d.ts|
78|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: rowCount: number;|@ohos.data.DataShareResultSet.d.ts|
79|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: isClosed: boolean;|@ohos.data.DataShareResultSet.d.ts|
80|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goToFirstRow(): boolean;|@ohos.data.DataShareResultSet.d.ts|
81|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goToLastRow(): boolean;|@ohos.data.DataShareResultSet.d.ts|
82|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goToNextRow(): boolean;|@ohos.data.DataShareResultSet.d.ts|
83|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goToPreviousRow(): boolean;|@ohos.data.DataShareResultSet.d.ts|
84|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goTo(offset: number): boolean;|@ohos.data.DataShareResultSet.d.ts|
85|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: goToRow(position: number): boolean;|@ohos.data.DataShareResultSet.d.ts|
86|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getBlob(columnIndex: number): Uint8Array;|@ohos.data.DataShareResultSet.d.ts|
87|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getString(columnIndex: number): string;|@ohos.data.DataShareResultSet.d.ts|
88|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getLong(columnIndex: number): number;|@ohos.data.DataShareResultSet.d.ts|
89|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getDouble(columnIndex: number): number;|@ohos.data.DataShareResultSet.d.ts|
90|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: close(): void;|@ohos.data.DataShareResultSet.d.ts|
91|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getColumnIndex(columnName: string): number;|@ohos.data.DataShareResultSet.d.ts|
92|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getColumnName(columnIndex: number): string;|@ohos.data.DataShareResultSet.d.ts|
93|Added|NA|Class name: DataShareResultSet;<br>Method or attribute name: getDataType(columnIndex: number): DataType;|@ohos.data.DataShareResultSet.d.ts|
94|Added|NA|Class name: KVStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, listener: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
95|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, listener: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
96|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, listener: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
97|Added|NA|Class name: distributedDataObject;<br>Method or attribute name: function create(context: Context, source: object): DataObject;|@ohos.data.distributedDataObject.d.ts|
98|Added|NA|Class name: SaveSuccessResponse;<br>Method or attribute name: sessionId: string;|@ohos.data.distributedDataObject.d.ts|
99|Added|NA|Class name: RevokeSaveSuccessResponse;<br>Method or attribute name: sessionId: string;|@ohos.data.distributedDataObject.d.ts|
100|Added|NA|Class name: SaveSuccessResponse;<br>Method or attribute name: version: number;|@ohos.data.distributedDataObject.d.ts|
101|Added|NA|Class name: SaveSuccessResponse;<br>Method or attribute name: deviceId: string;|@ohos.data.distributedDataObject.d.ts|
102|Added|NA|Class name: DataObject;<br>Method or attribute name: setSessionId(callback: AsyncCallback\<void>): void;|@ohos.data.distributedDataObject.d.ts|
103|Added|NA|Class name: DataObject;<br>Method or attribute name: save(deviceId: string, callback: AsyncCallback\<SaveSuccessResponse>): void;|@ohos.data.distributedDataObject.d.ts|
104|Added|NA|Class name: DataObject;<br>Method or attribute name: save(deviceId: string): Promise\<SaveSuccessResponse>;|@ohos.data.distributedDataObject.d.ts|
105|Added|NA|Class name: DataObject;<br>Method or attribute name: revokeSave(callback: AsyncCallback\<RevokeSaveSuccessResponse>): void;|@ohos.data.distributedDataObject.d.ts|
106|Added|NA|Class name: DataObject;<br>Method or attribute name: revokeSave(): Promise\<RevokeSaveSuccessResponse>;|@ohos.data.distributedDataObject.d.ts|
107|Added|NA|Class name: distributedKVStore;<br>Method or attribute name: function createKVManager(config: KVManagerConfig): KVManager;|@ohos.data.distributedKVStore.d.ts|
108|Added|NA|Class name: KVManagerConfig;<br>Method or attribute name: bundleName: string;|@ohos.data.distributedKVStore.d.ts|
109|Added|NA|Class name: KVManagerConfig;<br>Method or attribute name: context: Context;|@ohos.data.distributedKVStore.d.ts|
110|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_KEY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts|
111|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_VALUE_LENGTH: number;|@ohos.data.distributedKVStore.d.ts|
112|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_KEY_LENGTH_DEVICE: number;|@ohos.data.distributedKVStore.d.ts|
113|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_STORE_ID_LENGTH: number;|@ohos.data.distributedKVStore.d.ts|
114|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_QUERY_LENGTH: number;|@ohos.data.distributedKVStore.d.ts|
115|Added|NA|Class name: Constants;<br>Method or attribute name: readonly MAX_BATCH_SIZE: number;|@ohos.data.distributedKVStore.d.ts|
116|Added|NA|Class name: ValueType;<br>Method or attribute name: STRING|@ohos.data.distributedKVStore.d.ts|
117|Added|NA|Class name: ValueType;<br>Method or attribute name: INTEGER|@ohos.data.distributedKVStore.d.ts|
118|Added|NA|Class name: ValueType;<br>Method or attribute name: FLOAT|@ohos.data.distributedKVStore.d.ts|
119|Added|NA|Class name: ValueType;<br>Method or attribute name: BYTE_ARRAY|@ohos.data.distributedKVStore.d.ts|
120|Added|NA|Class name: ValueType;<br>Method or attribute name: BOOLEAN|@ohos.data.distributedKVStore.d.ts|
121|Added|NA|Class name: ValueType;<br>Method or attribute name: DOUBLE|@ohos.data.distributedKVStore.d.ts|
122|Added|NA|Class name: Value;<br>Method or attribute name: type: ValueType;|@ohos.data.distributedKVStore.d.ts|
123|Added|NA|Class name: Value;<br>Method or attribute name: value: Uint8Array \| string \| number \| boolean;|@ohos.data.distributedKVStore.d.ts|
124|Added|NA|Class name: Entry;<br>Method or attribute name: key: string;|@ohos.data.distributedKVStore.d.ts|
125|Added|NA|Class name: Entry;<br>Method or attribute name: value: Value;|@ohos.data.distributedKVStore.d.ts|
126|Added|NA|Class name: ChangeNotification;<br>Method or attribute name: insertEntries: Entry[];|@ohos.data.distributedKVStore.d.ts|
127|Added|NA|Class name: ChangeNotification;<br>Method or attribute name: updateEntries: Entry[];|@ohos.data.distributedKVStore.d.ts|
128|Added|NA|Class name: ChangeNotification;<br>Method or attribute name: deleteEntries: Entry[];|@ohos.data.distributedKVStore.d.ts|
129|Added|NA|Class name: ChangeNotification;<br>Method or attribute name: deviceId: string;|@ohos.data.distributedKVStore.d.ts|
130|Added|NA|Class name: SyncMode;<br>Method or attribute name: PULL_ONLY|@ohos.data.distributedKVStore.d.ts|
131|Added|NA|Class name: SyncMode;<br>Method or attribute name: PUSH_ONLY|@ohos.data.distributedKVStore.d.ts|
132|Added|NA|Class name: SyncMode;<br>Method or attribute name: PUSH_PULL|@ohos.data.distributedKVStore.d.ts|
133|Added|NA|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_LOCAL|@ohos.data.distributedKVStore.d.ts|
134|Added|NA|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE|@ohos.data.distributedKVStore.d.ts|
135|Added|NA|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_ALL|@ohos.data.distributedKVStore.d.ts|
136|Added|NA|Class name: KVStoreType;<br>Method or attribute name: DEVICE_COLLABORATION|@ohos.data.distributedKVStore.d.ts|
137|Added|NA|Class name: KVStoreType;<br>Method or attribute name: SINGLE_VERSION|@ohos.data.distributedKVStore.d.ts|
138|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S1|@ohos.data.distributedKVStore.d.ts|
139|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S2|@ohos.data.distributedKVStore.d.ts|
140|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S3|@ohos.data.distributedKVStore.d.ts|
141|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S4|@ohos.data.distributedKVStore.d.ts|
142|Added|NA|Class name: Options;<br>Method or attribute name: createIfMissing?: boolean;|@ohos.data.distributedKVStore.d.ts|
143|Added|NA|Class name: Options;<br>Method or attribute name: encrypt?: boolean;|@ohos.data.distributedKVStore.d.ts|
144|Added|NA|Class name: Options;<br>Method or attribute name: backup?: boolean;|@ohos.data.distributedKVStore.d.ts|
145|Added|NA|Class name: Options;<br>Method or attribute name: autoSync?: boolean;|@ohos.data.distributedKVStore.d.ts|
146|Added|NA|Class name: Options;<br>Method or attribute name: kvStoreType?: KVStoreType;|@ohos.data.distributedKVStore.d.ts|
147|Added|NA|Class name: Options;<br>Method or attribute name: securityLevel: SecurityLevel;|@ohos.data.distributedKVStore.d.ts|
148|Added|NA|Class name: Options;<br>Method or attribute name: schema?: Schema;|@ohos.data.distributedKVStore.d.ts|
149|Added|NA|Class name: Schema;<br>Method or attribute name: constructor()|@ohos.data.distributedKVStore.d.ts|
150|Added|NA|Class name: Query;<br>Method or attribute name: constructor()|@ohos.data.distributedKVStore.d.ts|
151|Added|NA|Class name: Schema;<br>Method or attribute name: root: FieldNode;|@ohos.data.distributedKVStore.d.ts|
152|Added|NA|Class name: Schema;<br>Method or attribute name: indexes: Array\<string>;|@ohos.data.distributedKVStore.d.ts|
153|Added|NA|Class name: Schema;<br>Method or attribute name: mode: number;|@ohos.data.distributedKVStore.d.ts|
154|Added|NA|Class name: Schema;<br>Method or attribute name: skip: number;|@ohos.data.distributedKVStore.d.ts|
155|Added|NA|Class name: FieldNode;<br>Method or attribute name: constructor(name: string)|@ohos.data.distributedKVStore.d.ts|
156|Added|NA|Class name: FieldNode;<br>Method or attribute name: appendChild(child: FieldNode): boolean;|@ohos.data.distributedKVStore.d.ts|
157|Added|NA|Class name: FieldNode;<br>Method or attribute name: default: string;|@ohos.data.distributedKVStore.d.ts|
158|Added|NA|Class name: FieldNode;<br>Method or attribute name: nullable: boolean;|@ohos.data.distributedKVStore.d.ts|
159|Added|NA|Class name: FieldNode;<br>Method or attribute name: type: number;|@ohos.data.distributedKVStore.d.ts|
160|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: getCount(): number;|@ohos.data.distributedKVStore.d.ts|
161|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: getPosition(): number;|@ohos.data.distributedKVStore.d.ts|
162|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: moveToFirst(): boolean;|@ohos.data.distributedKVStore.d.ts|
163|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: moveToLast(): boolean;|@ohos.data.distributedKVStore.d.ts|
164|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: moveToNext(): boolean;|@ohos.data.distributedKVStore.d.ts|
165|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: moveToPrevious(): boolean;|@ohos.data.distributedKVStore.d.ts|
166|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: move(offset: number): boolean;|@ohos.data.distributedKVStore.d.ts|
167|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: moveToPosition(position: number): boolean;|@ohos.data.distributedKVStore.d.ts|
168|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: isFirst(): boolean;|@ohos.data.distributedKVStore.d.ts|
169|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: isLast(): boolean;|@ohos.data.distributedKVStore.d.ts|
170|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: isBeforeFirst(): boolean;|@ohos.data.distributedKVStore.d.ts|
171|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: isAfterLast(): boolean;|@ohos.data.distributedKVStore.d.ts|
172|Added|NA|Class name: KVStoreResultSet;<br>Method or attribute name: getEntry(): Entry;|@ohos.data.distributedKVStore.d.ts|
173|Added|NA|Class name: Query;<br>Method or attribute name: reset(): Query;|@ohos.data.distributedKVStore.d.ts|
174|Added|NA|Class name: Query;<br>Method or attribute name: equalTo(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts|
175|Added|NA|Class name: Query;<br>Method or attribute name: notEqualTo(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts|
176|Added|NA|Class name: Query;<br>Method or attribute name: greaterThan(field: string, value: number \| string \| boolean): Query;|@ohos.data.distributedKVStore.d.ts|
177|Added|NA|Class name: Query;<br>Method or attribute name: lessThan(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts|
178|Added|NA|Class name: Query;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts|
179|Added|NA|Class name: Query;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: number \| string): Query;|@ohos.data.distributedKVStore.d.ts|
180|Added|NA|Class name: Query;<br>Method or attribute name: isNull(field: string): Query;|@ohos.data.distributedKVStore.d.ts|
181|Added|NA|Class name: Query;<br>Method or attribute name: inNumber(field: string, valueList: number[]): Query;|@ohos.data.distributedKVStore.d.ts|
182|Added|NA|Class name: Query;<br>Method or attribute name: inString(field: string, valueList: string[]): Query;|@ohos.data.distributedKVStore.d.ts|
183|Added|NA|Class name: Query;<br>Method or attribute name: notInNumber(field: string, valueList: number[]): Query;|@ohos.data.distributedKVStore.d.ts|
184|Added|NA|Class name: Query;<br>Method or attribute name: notInString(field: string, valueList: string[]): Query;|@ohos.data.distributedKVStore.d.ts|
185|Added|NA|Class name: Query;<br>Method or attribute name: like(field: string, value: string): Query;|@ohos.data.distributedKVStore.d.ts|
186|Added|NA|Class name: Query;<br>Method or attribute name: unlike(field: string, value: string): Query;|@ohos.data.distributedKVStore.d.ts|
187|Added|NA|Class name: Query;<br>Method or attribute name: and(): Query;|@ohos.data.distributedKVStore.d.ts|
188|Added|NA|Class name: Query;<br>Method or attribute name: or(): Query;|@ohos.data.distributedKVStore.d.ts|
189|Added|NA|Class name: Query;<br>Method or attribute name: orderByAsc(field: string): Query;|@ohos.data.distributedKVStore.d.ts|
190|Added|NA|Class name: Query;<br>Method or attribute name: orderByDesc(field: string): Query;|@ohos.data.distributedKVStore.d.ts|
191|Added|NA|Class name: Query;<br>Method or attribute name: limit(total: number, offset: number): Query;|@ohos.data.distributedKVStore.d.ts|
192|Added|NA|Class name: Query;<br>Method or attribute name: isNotNull(field: string): Query;|@ohos.data.distributedKVStore.d.ts|
193|Added|NA|Class name: Query;<br>Method or attribute name: beginGroup(): Query;|@ohos.data.distributedKVStore.d.ts|
194|Added|NA|Class name: Query;<br>Method or attribute name: endGroup(): Query;|@ohos.data.distributedKVStore.d.ts|
195|Added|NA|Class name: Query;<br>Method or attribute name: prefixKey(prefix: string): Query;|@ohos.data.distributedKVStore.d.ts|
196|Added|NA|Class name: Query;<br>Method or attribute name: setSuggestIndex(index: string): Query;|@ohos.data.distributedKVStore.d.ts|
197|Added|NA|Class name: Query;<br>Method or attribute name: deviceId(deviceId: string): Query;|@ohos.data.distributedKVStore.d.ts|
198|Added|NA|Class name: Query;<br>Method or attribute name: getSqlLike(): string;|@ohos.data.distributedKVStore.d.ts|
199|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
200|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
201|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: putBatch(entries: Entry[], callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
202|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: putBatch(entries: Entry[]): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
203|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: putBatch(value: Array\<ValuesBucket>, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
204|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: putBatch(value: Array\<ValuesBucket>): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
205|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
206|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: delete(key: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
207|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: delete(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<void>);|@ohos.data.distributedKVStore.d.ts|
208|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: delete(predicates: dataSharePredicates.DataSharePredicates): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
209|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: deleteBatch(keys: string[], callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
210|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: deleteBatch(keys: string[]): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
211|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
212|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
213|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: get(key: string, callback: AsyncCallback\<boolean \| string \| number \| Uint8Array>): void;|@ohos.data.distributedKVStore.d.ts|
214|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: get(key: string, callback: AsyncCallback\<boolean \| string \| number \| Uint8Array>): void;|@ohos.data.distributedKVStore.d.ts|
215|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: get(key: string): Promise\<boolean \| string \| number \| Uint8Array>;|@ohos.data.distributedKVStore.d.ts|
216|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: get(key: string): Promise\<boolean \| string \| number \| Uint8Array>;|@ohos.data.distributedKVStore.d.ts|
217|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
218|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
219|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
220|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(keyPrefix: string): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
221|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
222|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
223|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
224|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
225|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
226|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
227|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
228|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
229|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
230|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
231|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
232|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
233|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
234|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
235|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(predicates: dataSharePredicates.DataSharePredicates): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
236|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(predicates: dataSharePredicates.DataSharePredicates): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
237|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KVStoreResultSet, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
238|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KVStoreResultSet): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
239|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;|@ohos.data.distributedKVStore.d.ts|
240|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;|@ohos.data.distributedKVStore.d.ts|
241|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;|@ohos.data.distributedKVStore.d.ts|
242|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;|@ohos.data.distributedKVStore.d.ts|
243|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: backup(file: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
244|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: backup(file: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
245|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: restore(file: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
246|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: restore(file: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
247|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: deleteBackup(files: Array\<string>, callback: AsyncCallback\<Array\<[string, number]>>): void;|@ohos.data.distributedKVStore.d.ts|
248|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: deleteBackup(files: Array\<string>): Promise\<Array\<[string, number]>>;|@ohos.data.distributedKVStore.d.ts|
249|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: startTransaction(callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
250|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: startTransaction(): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
251|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: commit(callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
252|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: commit(): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
253|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: rollback(callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
254|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: rollback(): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
255|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: enableSync(enabled: boolean, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
256|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: enableSync(enabled: boolean): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
257|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
258|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
259|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
260|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
261|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void|@ohos.data.distributedKVStore.d.ts|
262|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIds: string[], query: Query, mode: SyncMode, delayMs?: number): void;|@ohos.data.distributedKVStore.d.ts|
263|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, listener: Callback\<ChangeNotification>): void;|@ohos.data.distributedKVStore.d.ts|
264|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;|@ohos.data.distributedKVStore.d.ts|
265|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;|@ohos.data.distributedKVStore.d.ts|
266|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;|@ohos.data.distributedKVStore.d.ts|
267|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(callback: AsyncCallback\<SecurityLevel>): void;|@ohos.data.distributedKVStore.d.ts|
268|Added|NA|Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(): Promise\<SecurityLevel>;|@ohos.data.distributedKVStore.d.ts|
269|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string, callback: AsyncCallback\<boolean \| string \| number \| Uint8Array>): void;|@ohos.data.distributedKVStore.d.ts|
270|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string): Promise\<boolean \| string \| number \| Uint8Array>;|@ohos.data.distributedKVStore.d.ts|
271|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
272|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
273|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query, callback: AsyncCallback\<Entry[]>): void;|@ohos.data.distributedKVStore.d.ts|
274|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query): Promise\<Entry[]>;|@ohos.data.distributedKVStore.d.ts|
275|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
276|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
277|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
278|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
279|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<KVStoreResultSet>): void;|@ohos.data.distributedKVStore.d.ts|
280|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, predicates: dataSharePredicates.DataSharePredicates): Promise\<KVStoreResultSet>;|@ohos.data.distributedKVStore.d.ts|
281|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query, callback: AsyncCallback\<number>): void;|@ohos.data.distributedKVStore.d.ts|
282|Added|NA|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query): Promise\<number>;|@ohos.data.distributedKVStore.d.ts|
283|Added|NA|Class name: KVManager;<br>Method or attribute name: getKVStore\<T>(storeId: string, options: Options, callback: AsyncCallback\<T>): void;|@ohos.data.distributedKVStore.d.ts|
284|Added|NA|Class name: KVManager;<br>Method or attribute name: getKVStore\<T>(storeId: string, options: Options): Promise\<T>;|@ohos.data.distributedKVStore.d.ts|
285|Added|NA|Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
286|Added|NA|Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
287|Added|NA|Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
288|Added|NA|Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string): Promise\<void>;|@ohos.data.distributedKVStore.d.ts|
289|Added|NA|Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string, callback: AsyncCallback\<string[]>): void;|@ohos.data.distributedKVStore.d.ts|
290|Added|NA|Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string): Promise\<string[]>;|@ohos.data.distributedKVStore.d.ts|
291|Added|NA|Class name: KVManager;<br>Method or attribute name: on(event: 'distributedDataServiceDie', deathCallback: Callback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
292|Added|NA|Class name: KVManager;<br>Method or attribute name: off(event: 'distributedDataServiceDie', deathCallback?: Callback\<void>): void;|@ohos.data.distributedKVStore.d.ts|
293|Added|NA|Class name: preferences;<br>Method or attribute name: function getPreferences(context: Context, name: string, callback: AsyncCallback\<Preferences>): void;|@ohos.data.preferences.d.ts|
294|Added|NA|Class name: preferences;<br>Method or attribute name: function getPreferences(context: Context, name: string): Promise\<Preferences>;|@ohos.data.preferences.d.ts|
295|Added|NA|Class name: preferences;<br>Method or attribute name: function deletePreferences(context: Context, name: string, callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
296|Added|NA|Class name: preferences;<br>Method or attribute name: function deletePreferences(context: Context, name: string): Promise\<void>;|@ohos.data.preferences.d.ts|
297|Added|NA|Class name: preferences;<br>Method or attribute name: function removePreferencesFromCache(context: Context, name: string, callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
298|Added|NA|Class name: preferences;<br>Method or attribute name: function removePreferencesFromCache(context: Context, name: string): Promise\<void>;|@ohos.data.preferences.d.ts|
299|Added|NA|Class name: preferences;<br>Method or attribute name: type ValueType = number \| string \| boolean \| Array\<number> \| Array\<string> \| Array\<boolean>;|@ohos.data.preferences.d.ts|
300|Added|NA|Class name: Preferences;<br>Method or attribute name: get(key: string, defValue: ValueType, callback: AsyncCallback\<ValueType>): void;|@ohos.data.preferences.d.ts|
301|Added|NA|Class name: Preferences;<br>Method or attribute name: get(key: string, defValue: ValueType): Promise\<ValueType>;|@ohos.data.preferences.d.ts|
302|Added|NA|Class name: Preferences;<br>Method or attribute name: getAll(callback: AsyncCallback\<Object>): void;|@ohos.data.preferences.d.ts|
303|Added|NA|Class name: Preferences;<br>Method or attribute name: getAll(): Promise\<Object>;|@ohos.data.preferences.d.ts|
304|Added|NA|Class name: Preferences;<br>Method or attribute name: has(key: string, callback: AsyncCallback\<boolean>): void;|@ohos.data.preferences.d.ts|
305|Added|NA|Class name: Preferences;<br>Method or attribute name: has(key: string): Promise\<boolean>;|@ohos.data.preferences.d.ts|
306|Added|NA|Class name: Preferences;<br>Method or attribute name: put(key: string, value: ValueType, callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
307|Added|NA|Class name: Preferences;<br>Method or attribute name: put(key: string, value: ValueType): Promise\<void>;|@ohos.data.preferences.d.ts|
308|Added|NA|Class name: Preferences;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
309|Added|NA|Class name: Preferences;<br>Method or attribute name: delete(key: string): Promise\<void>;|@ohos.data.preferences.d.ts|
310|Added|NA|Class name: Preferences;<br>Method or attribute name: clear(callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
311|Added|NA|Class name: Preferences;<br>Method or attribute name: clear(): Promise\<void>;|@ohos.data.preferences.d.ts|
312|Added|NA|Class name: Preferences;<br>Method or attribute name: flush(callback: AsyncCallback\<void>): void;|@ohos.data.preferences.d.ts|
313|Added|NA|Class name: Preferences;<br>Method or attribute name: flush(): Promise\<void>;|@ohos.data.preferences.d.ts|
314|Added|NA|Class name: Preferences;<br>Method or attribute name: on(type: 'change', callback: Callback\<{ key: string }>): void;|@ohos.data.preferences.d.ts|
315|Added|NA|Class name: Preferences;<br>Method or attribute name: off(type: 'change', callback?: Callback\<{ key: string }>): void;|@ohos.data.preferences.d.ts|
316|Added|NA|Class name: rdb;<br>Method or attribute name: export type ResultSet = _ResultSet;|@ohos.data.rdb.d.ts|
317|Added|NA|Class name: RdbStore;<br>Method or attribute name: batchInsert(table: string, values: Array\<ValuesBucket>, callback: AsyncCallback\<number>): void;|@ohos.data.rdb.d.ts|
318|Added|NA|Class name: RdbStore;<br>Method or attribute name: batchInsert(table: string, values: Array\<ValuesBucket>): Promise\<number>;|@ohos.data.rdb.d.ts|
319|Added|NA|Class name: relationalStore;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig, callback: AsyncCallback\<RdbStore>): void;|@ohos.data.relationalStore.d.ts|
320|Added|NA|Class name: relationalStore;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig): Promise\<RdbStore>;|@ohos.data.relationalStore.d.ts|
321|Added|NA|Class name: relationalStore;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\<void>): void;|@ohos.data.relationalStore.d.ts|
322|Added|NA|Class name: relationalStore;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string): Promise\<void>;|@ohos.data.relationalStore.d.ts|
323|Added|NA|Class name: relationalStore;<br>Method or attribute name: type ValueType = number \| string \| boolean \| Uint8Array;|@ohos.data.relationalStore.d.ts|
324|Added|NA|Class name: relationalStore;<br>Method or attribute name: type ValuesBucket = { [key:string]: ValueType \| Uint8Array \| null;}|@ohos.data.relationalStore.d.ts|
325|Added|NA|Class name: StoreConfig;<br>Method or attribute name: name: string;|@ohos.data.relationalStore.d.ts|
326|Added|NA|Class name: StoreConfig;<br>Method or attribute name: securityLevel: SecurityLevel;|@ohos.data.relationalStore.d.ts|
327|Added|NA|Class name: StoreConfig;<br>Method or attribute name: encrypt ?: boolean;|@ohos.data.relationalStore.d.ts|
328|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S1 = 1|@ohos.data.relationalStore.d.ts|
329|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S2 = 2|@ohos.data.relationalStore.d.ts|
330|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S3 = 3|@ohos.data.relationalStore.d.ts|
331|Added|NA|Class name: SecurityLevel;<br>Method or attribute name: S4 = 4|@ohos.data.relationalStore.d.ts|
332|Added|NA|Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PUSH = 0|@ohos.data.relationalStore.d.ts|
333|Added|NA|Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PULL = 1|@ohos.data.relationalStore.d.ts|
334|Added|NA|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE = 0|@ohos.data.relationalStore.d.ts|
335|Added|NA|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
336|Added|NA|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket): Promise\<number>;|@ohos.data.relationalStore.d.ts|
337|Added|NA|Class name: RdbStore;<br>Method or attribute name: batchInsert(table: string, values: Array\<ValuesBucket>, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
338|Added|NA|Class name: RdbStore;<br>Method or attribute name: batchInsert(table: string, values: Array\<ValuesBucket>): Promise\<number>;|@ohos.data.relationalStore.d.ts|
339|Added|NA|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
340|Added|NA|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates): Promise\<number>;|@ohos.data.relationalStore.d.ts|
341|Added|NA|Class name: RdbStore;<br>Method or attribute name: update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
342|Added|NA|Class name: RdbStore;<br>Method or attribute name: update(table: string, values: ValuesBucket, predicates: dataSharePredicates.DataSharePredicates): Promise\<number>;|@ohos.data.relationalStore.d.ts|
343|Added|NA|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
344|Added|NA|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates): Promise\<number>;|@ohos.data.relationalStore.d.ts|
345|Added|NA|Class name: RdbStore;<br>Method or attribute name: delete(table: string, predicates: dataSharePredicates.DataSharePredicates, callback: AsyncCallback\<number>): void;|@ohos.data.relationalStore.d.ts|
346|Added|NA|Class name: RdbStore;<br>Method or attribute name: delete(table: string, predicates: dataSharePredicates.DataSharePredicates): Promise\<number>;|@ohos.data.relationalStore.d.ts|
347|Added|NA|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;|@ohos.data.relationalStore.d.ts|
348|Added|NA|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns ?: Array\<string>): Promise\<ResultSet>;|@ohos.data.relationalStore.d.ts|
349|Added|NA|Class name: RdbStore;<br>Method or attribute name: query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;|@ohos.data.relationalStore.d.ts|
350|Added|NA|Class name: RdbStore;<br>Method or attribute name: query(table: string, predicates: dataSharePredicates.DataSharePredicates, columns ?: Array\<string>): Promise\<ResultSet>;|@ohos.data.relationalStore.d.ts|
351|Added|NA|Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<ResultSet>): void;|@ohos.data.relationalStore.d.ts|
352|Added|NA|Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<ResultSet>;|@ohos.data.relationalStore.d.ts|
353|Added|NA|Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<void>): void;|@ohos.data.relationalStore.d.ts|
354|Added|NA|Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<void>;|@ohos.data.relationalStore.d.ts|
355|Added|NA|Class name: RdbStore;<br>Method or attribute name: beginTransaction(): void;|@ohos.data.relationalStore.d.ts|
356|Added|NA|Class name: RdbStore;<br>Method or attribute name: commit(): void;|@ohos.data.relationalStore.d.ts|
357|Added|NA|Class name: RdbStore;<br>Method or attribute name: rollBack(): void;|@ohos.data.relationalStore.d.ts|
358|Added|NA|Class name: RdbStore;<br>Method or attribute name: backup(destName: string, callback: AsyncCallback\<void>): void;|@ohos.data.relationalStore.d.ts|
359|Added|NA|Class name: RdbStore;<br>Method or attribute name: backup(destName: string): Promise\<void>;|@ohos.data.relationalStore.d.ts|
360|Added|NA|Class name: RdbStore;<br>Method or attribute name: restore(srcName: string, callback: AsyncCallback\<void>): void;|@ohos.data.relationalStore.d.ts|
361|Added|NA|Class name: RdbStore;<br>Method or attribute name: restore(srcName: string): Promise\<void>;|@ohos.data.relationalStore.d.ts|
362|Added|NA|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>, callback: AsyncCallback\<void>): void;|@ohos.data.relationalStore.d.ts|
363|Added|NA|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>): Promise\<void>;|@ohos.data.relationalStore.d.ts|
364|Added|NA|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\<string>): void;|@ohos.data.relationalStore.d.ts|
365|Added|NA|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string): Promise\<string>;|@ohos.data.relationalStore.d.ts|
366|Added|NA|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\<Array\<[ string, number ]>>): void;|@ohos.data.relationalStore.d.ts|
367|Added|NA|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates): Promise\<Array\<[ string, number ]>>;|@ohos.data.relationalStore.d.ts|
368|Added|NA|Class name: RdbStore;<br>Method or attribute name: remoteQuery(device: string, table: string, predicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;|@ohos.data.relationalStore.d.ts|
369|Added|NA|Class name: RdbStore;<br>Method or attribute name: remoteQuery(device: string, table: string, predicates: RdbPredicates, columns: Array\<string>): Promise\<ResultSet>;|@ohos.data.relationalStore.d.ts|
370|Added|NA|Class name: RdbStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;|@ohos.data.relationalStore.d.ts|
371|Added|NA|Class name: RdbStore;<br>Method or attribute name: off(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;|@ohos.data.relationalStore.d.ts|
372|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: constructor(name: string)|@ohos.data.relationalStore.d.ts|
373|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: inDevices(devices: Array\<string>): RdbPredicates;|@ohos.data.relationalStore.d.ts|
374|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: inAllDevices(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
375|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: equalTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
376|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: notEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
377|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: beginWrap(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
378|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: endWrap(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
379|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: or(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
380|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: and(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
381|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: contains(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
382|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: beginsWith(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
383|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: endsWith(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
384|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: isNull(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
385|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: isNotNull(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
386|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: like(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
387|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: glob(field: string, value: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
388|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: between(field: string, low: ValueType, high: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
389|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
390|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: greaterThan(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
391|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: lessThan(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
392|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
393|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;|@ohos.data.relationalStore.d.ts|
394|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: orderByAsc(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
395|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: orderByDesc(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
396|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: distinct(): RdbPredicates;|@ohos.data.relationalStore.d.ts|
397|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: limitAs(value: number): RdbPredicates;|@ohos.data.relationalStore.d.ts|
398|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: offsetAs(rowOffset: number): RdbPredicates;|@ohos.data.relationalStore.d.ts|
399|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: groupBy(fields: Array\<string>): RdbPredicates;|@ohos.data.relationalStore.d.ts|
400|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: indexedBy(field: string): RdbPredicates;|@ohos.data.relationalStore.d.ts|
401|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: in(field: string, value: Array\<ValueType>): RdbPredicates;|@ohos.data.relationalStore.d.ts|
402|Added|NA|Class name: RdbPredicates;<br>Method or attribute name: notIn(field: string, value: Array\<ValueType>): RdbPredicates;|@ohos.data.relationalStore.d.ts|
403|Added|NA|Class name: ResultSet;<br>Method or attribute name: columnNames: Array\<string>;|@ohos.data.relationalStore.d.ts|
404|Added|NA|Class name: ResultSet;<br>Method or attribute name: columnCount: number;|@ohos.data.relationalStore.d.ts|
405|Added|NA|Class name: ResultSet;<br>Method or attribute name: rowCount: number;|@ohos.data.relationalStore.d.ts|
406|Added|NA|Class name: ResultSet;<br>Method or attribute name: rowIndex: number;|@ohos.data.relationalStore.d.ts|
407|Added|NA|Class name: ResultSet;<br>Method or attribute name: isAtFirstRow: boolean;|@ohos.data.relationalStore.d.ts|
408|Added|NA|Class name: ResultSet;<br>Method or attribute name: isAtLastRow: boolean;|@ohos.data.relationalStore.d.ts|
409|Added|NA|Class name: ResultSet;<br>Method or attribute name: isEnded: boolean;|@ohos.data.relationalStore.d.ts|
410|Added|NA|Class name: ResultSet;<br>Method or attribute name: isStarted: boolean;|@ohos.data.relationalStore.d.ts|
411|Added|NA|Class name: ResultSet;<br>Method or attribute name: isClosed: boolean;|@ohos.data.relationalStore.d.ts|
412|Added|NA|Class name: ResultSet;<br>Method or attribute name: getColumnIndex(columnName: string): number;|@ohos.data.relationalStore.d.ts|
413|Added|NA|Class name: ResultSet;<br>Method or attribute name: getColumnName(columnIndex: number): string;|@ohos.data.relationalStore.d.ts|
414|Added|NA|Class name: ResultSet;<br>Method or attribute name: goTo(offset: number): boolean;|@ohos.data.relationalStore.d.ts|
415|Added|NA|Class name: ResultSet;<br>Method or attribute name: goToRow(position: number): boolean;|@ohos.data.relationalStore.d.ts|
416|Added|NA|Class name: ResultSet;<br>Method or attribute name: goToFirstRow(): boolean;|@ohos.data.relationalStore.d.ts|
417|Added|NA|Class name: ResultSet;<br>Method or attribute name: goToLastRow(): boolean;|@ohos.data.relationalStore.d.ts|
418|Added|NA|Class name: ResultSet;<br>Method or attribute name: goToNextRow(): boolean;|@ohos.data.relationalStore.d.ts|
419|Added|NA|Class name: ResultSet;<br>Method or attribute name: goToPreviousRow(): boolean;|@ohos.data.relationalStore.d.ts|
420|Added|NA|Class name: ResultSet;<br>Method or attribute name: getBlob(columnIndex: number): Uint8Array;|@ohos.data.relationalStore.d.ts|
421|Added|NA|Class name: ResultSet;<br>Method or attribute name: getString(columnIndex: number): string;|@ohos.data.relationalStore.d.ts|
422|Added|NA|Class name: ResultSet;<br>Method or attribute name: getLong(columnIndex: number): number;|@ohos.data.relationalStore.d.ts|
423|Added|NA|Class name: ResultSet;<br>Method or attribute name: getDouble(columnIndex: number): number;|@ohos.data.relationalStore.d.ts|
424|Added|NA|Class name: ResultSet;<br>Method or attribute name: isColumnNull(columnIndex: number): boolean;|@ohos.data.relationalStore.d.ts|
425|Added|NA|Class name: ResultSet;<br>Method or attribute name: close(): void;|@ohos.data.relationalStore.d.ts|
426|Added|NA|Class name: sourcefile;<br>Method or attribute name: export type ValueType = number \| string \| boolean;|@ohos.data.ValuesBucket.d.ts|
427|Added|NA|Class name: sourcefile;<br>Method or attribute name: export type ValuesBucket = {<br><br>    [key: string]: ValueType \| Uint8Array \| null;<br><br>}|@ohos.data.ValuesBucket.d.ts|
428|Deprecated version changed|Class name: distributedData;<br>Method or attribute name: declare distributedData<br>Old version: |Class name: distributedData;<br>Method or attribute name: declare distributedData<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
429|Deprecated version changed|Class name: distributedData;<br>Method or attribute name: function createKVManager(config: KVManagerConfig, callback: AsyncCallback\<KVManager>): void;<br>Old version: |Class name: distributedData;<br>Method or attribute name: function createKVManager(config: KVManagerConfig, callback: AsyncCallback\<KVManager>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore#createKVManager|@ohos.data.distributedData.d.ts|
430|Deprecated version changed|Class name: distributedData;<br>Method or attribute name: function createKVManager(config: KVManagerConfig): Promise\<KVManager>;<br>Old version: |Class name: distributedData;<br>Method or attribute name: function createKVManager(config: KVManagerConfig): Promise\<KVManager>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore#createKVManager|@ohos.data.distributedData.d.ts|
431|Deprecated version changed|Class name: KVManagerConfig;<br>Method or attribute name: interface KVManagerConfig<br>Old version: |Class name: KVManagerConfig;<br>Method or attribute name: interface KVManagerConfig<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManagerConfig|@ohos.data.distributedData.d.ts|
432|Deprecated version changed|Class name: KVManagerConfig;<br>Method or attribute name: userInfo: UserInfo;<br>Old version: |Class name: KVManagerConfig;<br>Method or attribute name: userInfo: UserInfo;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManagerConfig|@ohos.data.distributedData.d.ts|
433|Deprecated version changed|Class name: KVManagerConfig;<br>Method or attribute name: bundleName: string;<br>Old version: |Class name: KVManagerConfig;<br>Method or attribute name: bundleName: string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManagerConfig#bundleName|@ohos.data.distributedData.d.ts|
434|Deprecated version changed|Class name: UserInfo;<br>Method or attribute name: interface UserInfo<br>Old version: |Class name: UserInfo;<br>Method or attribute name: interface UserInfo<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
435|Deprecated version changed|Class name: UserInfo;<br>Method or attribute name: userId?: string;<br>Old version: |Class name: UserInfo;<br>Method or attribute name: userId?: string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
436|Deprecated version changed|Class name: UserInfo;<br>Method or attribute name: userType?: UserType;<br>Old version: |Class name: UserInfo;<br>Method or attribute name: userType?: UserType;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
437|Deprecated version changed|Class name: UserType;<br>Method or attribute name: enum UserType<br>Old version: |Class name: UserType;<br>Method or attribute name: enum UserType<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
438|Deprecated version changed|Class name: UserType;<br>Method or attribute name: SAME_USER_ID = 0<br>Old version: |Class name: UserType;<br>Method or attribute name: SAME_USER_ID = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore|@ohos.data.distributedData.d.ts|
439|Deprecated version changed|Class name: Constants;<br>Method or attribute name: Constants<br>Old version: |Class name: Constants;<br>Method or attribute name: Constants<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Constants|@ohos.data.distributedData.d.ts|
440|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: enum ValueType<br>Old version: |Class name: ValueType;<br>Method or attribute name: enum ValueType<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType|@ohos.data.distributedData.d.ts|
441|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: STRING = 0<br>Old version: |Class name: ValueType;<br>Method or attribute name: STRING = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#STRING|@ohos.data.distributedData.d.ts|
442|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: INTEGER = 1<br>Old version: |Class name: ValueType;<br>Method or attribute name: INTEGER = 1<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#INTEGER|@ohos.data.distributedData.d.ts|
443|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: FLOAT = 2<br>Old version: |Class name: ValueType;<br>Method or attribute name: FLOAT = 2<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#FLOAT|@ohos.data.distributedData.d.ts|
444|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: BYTE_ARRAY = 3<br>Old version: |Class name: ValueType;<br>Method or attribute name: BYTE_ARRAY = 3<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#BYTE_ARRAY|@ohos.data.distributedData.d.ts|
445|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: BOOLEAN = 4<br>Old version: |Class name: ValueType;<br>Method or attribute name: BOOLEAN = 4<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#BOOLEAN|@ohos.data.distributedData.d.ts|
446|Deprecated version changed|Class name: ValueType;<br>Method or attribute name: DOUBLE = 5<br>Old version: |Class name: ValueType;<br>Method or attribute name: DOUBLE = 5<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ValueType#DOUBLE|@ohos.data.distributedData.d.ts|
447|Deprecated version changed|Class name: Value;<br>Method or attribute name: interface Value<br>Old version: |Class name: Value;<br>Method or attribute name: interface Value<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Value|@ohos.data.distributedData.d.ts|
448|Deprecated version changed|Class name: Value;<br>Method or attribute name: type: ValueType;<br>Old version: |Class name: Value;<br>Method or attribute name: type: ValueType;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Value#type|@ohos.data.distributedData.d.ts|
449|Deprecated version changed|Class name: Value;<br>Method or attribute name: value: Uint8Array \| string \| number \| boolean;<br>Old version: |Class name: Value;<br>Method or attribute name: value: Uint8Array \| string \| number \| boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Value#value|@ohos.data.distributedData.d.ts|
450|Deprecated version changed|Class name: Entry;<br>Method or attribute name: interface Entry<br>Old version: |Class name: Entry;<br>Method or attribute name: interface Entry<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Entry|@ohos.data.distributedData.d.ts|
451|Deprecated version changed|Class name: Entry;<br>Method or attribute name: key: string;<br>Old version: |Class name: Entry;<br>Method or attribute name: key: string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Entry#key|@ohos.data.distributedData.d.ts|
452|Deprecated version changed|Class name: Entry;<br>Method or attribute name: value: Value;<br>Old version: |Class name: Entry;<br>Method or attribute name: value: Value;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Entry#value|@ohos.data.distributedData.d.ts|
453|Deprecated version changed|Class name: ChangeNotification;<br>Method or attribute name: interface ChangeNotification<br>Old version: |Class name: ChangeNotification;<br>Method or attribute name: interface ChangeNotification<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ChangeNotification|@ohos.data.distributedData.d.ts|
454|Deprecated version changed|Class name: ChangeNotification;<br>Method or attribute name: insertEntries: Entry[];<br>Old version: |Class name: ChangeNotification;<br>Method or attribute name: insertEntries: Entry[];<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ChangeNotification#insertEntries|@ohos.data.distributedData.d.ts|
455|Deprecated version changed|Class name: ChangeNotification;<br>Method or attribute name: updateEntries: Entry[];<br>Old version: |Class name: ChangeNotification;<br>Method or attribute name: updateEntries: Entry[];<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ChangeNotification#updateEntries|@ohos.data.distributedData.d.ts|
456|Deprecated version changed|Class name: ChangeNotification;<br>Method or attribute name: deleteEntries: Entry[];<br>Old version: |Class name: ChangeNotification;<br>Method or attribute name: deleteEntries: Entry[];<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ChangeNotification#deleteEntries|@ohos.data.distributedData.d.ts|
457|Deprecated version changed|Class name: ChangeNotification;<br>Method or attribute name: deviceId: string;<br>Old version: |Class name: ChangeNotification;<br>Method or attribute name: deviceId: string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.ChangeNotification#deviceId|@ohos.data.distributedData.d.ts|
458|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: enum SyncMode<br>Old version: |Class name: SyncMode;<br>Method or attribute name: enum SyncMode<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SyncMode|@ohos.data.distributedData.d.ts|
459|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: PULL_ONLY = 0<br>Old version: |Class name: SyncMode;<br>Method or attribute name: PULL_ONLY = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SyncMode#PULL_ONLY|@ohos.data.distributedData.d.ts|
460|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: PUSH_ONLY = 1<br>Old version: |Class name: SyncMode;<br>Method or attribute name: PUSH_ONLY = 1<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SyncMode#PUSH_ONLY|@ohos.data.distributedData.d.ts|
461|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: PUSH_PULL = 2<br>Old version: |Class name: SyncMode;<br>Method or attribute name: PUSH_PULL = 2<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SyncMode#PUSH_PULL|@ohos.data.distributedData.d.ts|
462|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SubscribeType|@ohos.data.distributedData.d.ts|
463|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_LOCAL = 0<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_LOCAL = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SubscribeType#SUBSCRIBE_TYPE_LOCAL|@ohos.data.distributedData.d.ts|
464|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE = 1<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE = 1<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SubscribeType#SUBSCRIBE_TYPE_REMOTE|@ohos.data.distributedData.d.ts|
465|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_ALL = 2<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_ALL = 2<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SubscribeType#SUBSCRIBE_TYPE_ALL|@ohos.data.distributedData.d.ts|
466|Deprecated version changed|Class name: KVStoreType;<br>Method or attribute name: enum KVStoreType<br>Old version: |Class name: KVStoreType;<br>Method or attribute name: enum KVStoreType<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts|
467|Deprecated version changed|Class name: KVStoreType;<br>Method or attribute name: DEVICE_COLLABORATION = 0<br>Old version: |Class name: KVStoreType;<br>Method or attribute name: DEVICE_COLLABORATION = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreType#DEVICE_COLLABORATION|@ohos.data.distributedData.d.ts|
468|Deprecated version changed|Class name: KVStoreType;<br>Method or attribute name: SINGLE_VERSION = 1<br>Old version: |Class name: KVStoreType;<br>Method or attribute name: SINGLE_VERSION = 1<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreType#SINGLE_VERSION|@ohos.data.distributedData.d.ts|
469|Deprecated version changed|Class name: KVStoreType;<br>Method or attribute name: MULTI_VERSION = 2<br>Old version: |Class name: KVStoreType;<br>Method or attribute name: MULTI_VERSION = 2<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreType|@ohos.data.distributedData.d.ts|
470|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: enum SecurityLevel<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: enum SecurityLevel<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
471|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: NO_LEVEL = 0<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: NO_LEVEL = 0<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
472|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: S0 = 1<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: S0 = 1<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel|@ohos.data.distributedData.d.ts|
473|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: S1 = 2<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: S1 = 2<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel#S1|@ohos.data.distributedData.d.ts|
474|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: S2 = 3<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: S2 = 3<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel#S2|@ohos.data.distributedData.d.ts|
475|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: S3 = 5<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: S3 = 5<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel#S3|@ohos.data.distributedData.d.ts|
476|Deprecated version changed|Class name: SecurityLevel;<br>Method or attribute name: S4 = 6<br>Old version: |Class name: SecurityLevel;<br>Method or attribute name: S4 = 6<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SecurityLevel#S4|@ohos.data.distributedData.d.ts|
477|Deprecated version changed|Class name: Options;<br>Method or attribute name: interface Options<br>Old version: |Class name: Options;<br>Method or attribute name: interface Options<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options|@ohos.data.distributedData.d.ts|
478|Deprecated version changed|Class name: Options;<br>Method or attribute name: createIfMissing?: boolean;<br>Old version: |Class name: Options;<br>Method or attribute name: createIfMissing?: boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#createIfMissing|@ohos.data.distributedData.d.ts|
479|Deprecated version changed|Class name: Options;<br>Method or attribute name: encrypt?: boolean;<br>Old version: |Class name: Options;<br>Method or attribute name: encrypt?: boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#encrypt|@ohos.data.distributedData.d.ts|
480|Deprecated version changed|Class name: Options;<br>Method or attribute name: backup?: boolean;<br>Old version: |Class name: Options;<br>Method or attribute name: backup?: boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#backup|@ohos.data.distributedData.d.ts|
481|Deprecated version changed|Class name: Options;<br>Method or attribute name: autoSync?: boolean;<br>Old version: |Class name: Options;<br>Method or attribute name: autoSync?: boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#autoSync|@ohos.data.distributedData.d.ts|
482|Deprecated version changed|Class name: Options;<br>Method or attribute name: kvStoreType?: KVStoreType;<br>Old version: |Class name: Options;<br>Method or attribute name: kvStoreType?: KVStoreType;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#kvStoreType|@ohos.data.distributedData.d.ts|
483|Deprecated version changed|Class name: Options;<br>Method or attribute name: securityLevel?: SecurityLevel;<br>Old version: |Class name: Options;<br>Method or attribute name: securityLevel?: SecurityLevel;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#securityLevel|@ohos.data.distributedData.d.ts|
484|Deprecated version changed|Class name: Options;<br>Method or attribute name: schema?: Schema;<br>Old version: |Class name: Options;<br>Method or attribute name: schema?: Schema;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Options#schema|@ohos.data.distributedData.d.ts|
485|Deprecated version changed|Class name: Schema;<br>Method or attribute name: class Schema<br>Old version: |Class name: Schema;<br>Method or attribute name: class Schema<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema|@ohos.data.distributedData.d.ts|
486|Deprecated version changed|Class name: Schema;<br>Method or attribute name: constructor()<br>Old version: |Class name: Schema;<br>Method or attribute name: constructor()<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema#constructor|@ohos.data.distributedData.d.ts|
487|Deprecated version changed|Class name: Query;<br>Method or attribute name: constructor()<br>Old version: |Class name: Query;<br>Method or attribute name: constructor()<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#constructor|@ohos.data.distributedData.d.ts|
488|Deprecated version changed|Class name: Schema;<br>Method or attribute name: root: FieldNode;<br>Old version: |Class name: Schema;<br>Method or attribute name: root: FieldNode;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema#root|@ohos.data.distributedData.d.ts|
489|Deprecated version changed|Class name: Schema;<br>Method or attribute name: indexes: Array\<string>;<br>Old version: |Class name: Schema;<br>Method or attribute name: indexes: Array\<string>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema#indexes|@ohos.data.distributedData.d.ts|
490|Deprecated version changed|Class name: Schema;<br>Method or attribute name: mode: number;<br>Old version: |Class name: Schema;<br>Method or attribute name: mode: number;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema#mode|@ohos.data.distributedData.d.ts|
491|Deprecated version changed|Class name: Schema;<br>Method or attribute name: skip: number;<br>Old version: |Class name: Schema;<br>Method or attribute name: skip: number;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Schema#skip|@ohos.data.distributedData.d.ts|
492|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: class FieldNode<br>Old version: |Class name: FieldNode;<br>Method or attribute name: class FieldNode<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode|@ohos.data.distributedData.d.ts|
493|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: constructor(name: string)<br>Old version: |Class name: FieldNode;<br>Method or attribute name: constructor(name: string)<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode#constructor|@ohos.data.distributedData.d.ts|
494|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: appendChild(child: FieldNode): boolean;<br>Old version: |Class name: FieldNode;<br>Method or attribute name: appendChild(child: FieldNode): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode#appendChild|@ohos.data.distributedData.d.ts|
495|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: default: string;<br>Old version: |Class name: FieldNode;<br>Method or attribute name: default: string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode#default|@ohos.data.distributedData.d.ts|
496|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: nullable: boolean;<br>Old version: |Class name: FieldNode;<br>Method or attribute name: nullable: boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode#nullable|@ohos.data.distributedData.d.ts|
497|Deprecated version changed|Class name: FieldNode;<br>Method or attribute name: type: number;<br>Old version: |Class name: FieldNode;<br>Method or attribute name: type: number;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.FieldNode#type|@ohos.data.distributedData.d.ts|
498|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: interface KvStoreResultSet<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: interface KvStoreResultSet<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet|@ohos.data.distributedData.d.ts|
499|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: getCount(): number;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: getCount(): number;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#getCount|@ohos.data.distributedData.d.ts|
500|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: getPosition(): number;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: getPosition(): number;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#getPosition|@ohos.data.distributedData.d.ts|
501|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: moveToFirst(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: moveToFirst(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#moveToFirst|@ohos.data.distributedData.d.ts|
502|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: moveToLast(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: moveToLast(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#moveToLast|@ohos.data.distributedData.d.ts|
503|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: moveToNext(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: moveToNext(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#moveToNext|@ohos.data.distributedData.d.ts|
504|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: moveToPrevious(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: moveToPrevious(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#moveToPrevious|@ohos.data.distributedData.d.ts|
505|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: move(offset: number): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: move(offset: number): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#move|@ohos.data.distributedData.d.ts|
506|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: moveToPosition(position: number): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: moveToPosition(position: number): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#moveToPosition|@ohos.data.distributedData.d.ts|
507|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: isFirst(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: isFirst(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#isFirst|@ohos.data.distributedData.d.ts|
508|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: isLast(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: isLast(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#isLast|@ohos.data.distributedData.d.ts|
509|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: isBeforeFirst(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: isBeforeFirst(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#isBeforeFirst|@ohos.data.distributedData.d.ts|
510|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: isAfterLast(): boolean;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: isAfterLast(): boolean;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#isAfterLast|@ohos.data.distributedData.d.ts|
511|Deprecated version changed|Class name: KvStoreResultSet;<br>Method or attribute name: getEntry(): Entry;<br>Old version: |Class name: KvStoreResultSet;<br>Method or attribute name: getEntry(): Entry;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVStoreResultSet#getEntry|@ohos.data.distributedData.d.ts|
512|Deprecated version changed|Class name: Query;<br>Method or attribute name: class Query<br>Old version: |Class name: Query;<br>Method or attribute name: class Query<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query|@ohos.data.distributedData.d.ts|
513|Deprecated version changed|Class name: Query;<br>Method or attribute name: reset(): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: reset(): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#reset|@ohos.data.distributedData.d.ts|
514|Deprecated version changed|Class name: Query;<br>Method or attribute name: equalTo(field: string, value: number \| string \| boolean): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: equalTo(field: string, value: number \| string \| boolean): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#equalTo|@ohos.data.distributedData.d.ts|
515|Deprecated version changed|Class name: Query;<br>Method or attribute name: notEqualTo(field: string, value: number \| string \| boolean): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: notEqualTo(field: string, value: number \| string \| boolean): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#notEqualTo|@ohos.data.distributedData.d.ts|
516|Deprecated version changed|Class name: Query;<br>Method or attribute name: greaterThan(field: string, value: number \| string \| boolean): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: greaterThan(field: string, value: number \| string \| boolean): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#greaterThan|@ohos.data.distributedData.d.ts|
517|Deprecated version changed|Class name: Query;<br>Method or attribute name: lessThan(field: string, value: number \| string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: lessThan(field: string, value: number \| string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#lessThan|@ohos.data.distributedData.d.ts|
518|Deprecated version changed|Class name: Query;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: number \| string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: number \| string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#greaterThanOrEqualTo|@ohos.data.distributedData.d.ts|
519|Deprecated version changed|Class name: Query;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: number \| string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: number \| string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#lessThanOrEqualTo|@ohos.data.distributedData.d.ts|
520|Deprecated version changed|Class name: Query;<br>Method or attribute name: isNull(field: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: isNull(field: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#isNull|@ohos.data.distributedData.d.ts|
521|Deprecated version changed|Class name: Query;<br>Method or attribute name: inNumber(field: string, valueList: number[]): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: inNumber(field: string, valueList: number[]): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#inNumber|@ohos.data.distributedData.d.ts|
522|Deprecated version changed|Class name: Query;<br>Method or attribute name: inString(field: string, valueList: string[]): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: inString(field: string, valueList: string[]): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#inString|@ohos.data.distributedData.d.ts|
523|Deprecated version changed|Class name: Query;<br>Method or attribute name: notInNumber(field: string, valueList: number[]): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: notInNumber(field: string, valueList: number[]): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#notInNumber|@ohos.data.distributedData.d.ts|
524|Deprecated version changed|Class name: Query;<br>Method or attribute name: notInString(field: string, valueList: string[]): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: notInString(field: string, valueList: string[]): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#notInString|@ohos.data.distributedData.d.ts|
525|Deprecated version changed|Class name: Query;<br>Method or attribute name: like(field: string, value: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: like(field: string, value: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#like|@ohos.data.distributedData.d.ts|
526|Deprecated version changed|Class name: Query;<br>Method or attribute name: unlike(field: string, value: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: unlike(field: string, value: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#unlike|@ohos.data.distributedData.d.ts|
527|Deprecated version changed|Class name: Query;<br>Method or attribute name: and(): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: and(): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#and|@ohos.data.distributedData.d.ts|
528|Deprecated version changed|Class name: Query;<br>Method or attribute name: or(): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: or(): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#or|@ohos.data.distributedData.d.ts|
529|Deprecated version changed|Class name: Query;<br>Method or attribute name: orderByAsc(field: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: orderByAsc(field: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#orderByAsc|@ohos.data.distributedData.d.ts|
530|Deprecated version changed|Class name: Query;<br>Method or attribute name: orderByDesc(field: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: orderByDesc(field: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#orderByDesc|@ohos.data.distributedData.d.ts|
531|Deprecated version changed|Class name: Query;<br>Method or attribute name: limit(total: number, offset: number): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: limit(total: number, offset: number): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#limit|@ohos.data.distributedData.d.ts|
532|Deprecated version changed|Class name: Query;<br>Method or attribute name: isNotNull(field: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: isNotNull(field: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#isNotNull|@ohos.data.distributedData.d.ts|
533|Deprecated version changed|Class name: Query;<br>Method or attribute name: beginGroup(): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: beginGroup(): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#beginGroup|@ohos.data.distributedData.d.ts|
534|Deprecated version changed|Class name: Query;<br>Method or attribute name: endGroup(): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: endGroup(): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#endGroup|@ohos.data.distributedData.d.ts|
535|Deprecated version changed|Class name: Query;<br>Method or attribute name: prefixKey(prefix: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: prefixKey(prefix: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#prefixKey|@ohos.data.distributedData.d.ts|
536|Deprecated version changed|Class name: Query;<br>Method or attribute name: setSuggestIndex(index: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: setSuggestIndex(index: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#setSuggestIndex|@ohos.data.distributedData.d.ts|
537|Deprecated version changed|Class name: Query;<br>Method or attribute name: deviceId(deviceId: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: deviceId(deviceId: string): Query;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#deviceId|@ohos.data.distributedData.d.ts|
538|Deprecated version changed|Class name: Query;<br>Method or attribute name: getSqlLike(): string;<br>Old version: |Class name: Query;<br>Method or attribute name: getSqlLike(): string;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.Query#getSqlLike|@ohos.data.distributedData.d.ts|
539|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: interface KVStore<br>Old version: |Class name: KVStore;<br>Method or attribute name: interface KVStore<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
540|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#put|@ohos.data.distributedData.d.ts|
541|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: put(key: string, value: Uint8Array \| string \| number \| boolean): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
542|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#delete|@ohos.data.distributedData.d.ts|
543|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: delete(key: string): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: delete(key: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
544|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#on|@ohos.data.distributedData.d.ts|
545|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#on|@ohos.data.distributedData.d.ts|
546|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: on(event: 'syncComplete', syncCallback: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#on|@ohos.data.distributedData.d.ts|
547|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#off|@ohos.data.distributedData.d.ts|
548|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#off|@ohos.data.distributedData.d.ts|
549|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#off|@ohos.data.distributedData.d.ts|
550|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#off|@ohos.data.distributedData.d.ts|
551|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: putBatch(entries: Entry[], callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: putBatch(entries: Entry[], callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#putBatch|@ohos.data.distributedData.d.ts|
552|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: putBatch(entries: Entry[]): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: putBatch(entries: Entry[]): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
553|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: deleteBatch(keys: string[], callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: deleteBatch(keys: string[], callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#deleteBatch|@ohos.data.distributedData.d.ts|
554|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: deleteBatch(keys: string[]): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: deleteBatch(keys: string[]): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
555|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: startTransaction(callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: startTransaction(callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#startTransaction|@ohos.data.distributedData.d.ts|
556|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: startTransaction(): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: startTransaction(): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
557|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: commit(callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: commit(callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#commit|@ohos.data.distributedData.d.ts|
558|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: commit(): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: commit(): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
559|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: rollback(callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: rollback(callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#rollback|@ohos.data.distributedData.d.ts|
560|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: rollback(): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: rollback(): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
561|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: enableSync(enabled: boolean, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: enableSync(enabled: boolean, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#enableSync|@ohos.data.distributedData.d.ts|
562|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: enableSync(enabled: boolean): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: enableSync(enabled: boolean): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
563|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[], callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#setSyncRange|@ohos.data.distributedData.d.ts|
564|Deprecated version changed|Class name: KVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\<void>;<br>Old version: |Class name: KVStore;<br>Method or attribute name: setSyncRange(localLabels: string[], remoteSupportLabels: string[]): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
565|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: interface SingleKVStore<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: interface SingleKVStore<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
566|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: get(key: string, callback: AsyncCallback\<Uint8Array \| string \| boolean \| number>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: get(key: string, callback: AsyncCallback\<Uint8Array \| string \| boolean \| number>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#get|@ohos.data.distributedData.d.ts|
567|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: get(key: string): Promise\<Uint8Array \| string \| boolean \| number>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: get(key: string): Promise\<Uint8Array \| string \| boolean \| number>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
568|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getEntries|@ohos.data.distributedData.d.ts|
569|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string): Promise\<Entry[]>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getEntries(keyPrefix: string): Promise\<Entry[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
570|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getEntries|@ohos.data.distributedData.d.ts|
571|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query, callback: AsyncCallback\<Entry[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getEntries|@ohos.data.distributedData.d.ts|
572|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
573|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(query: Query): Promise\<Entry[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
574|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string, callback: AsyncCallback\<KvStoreResultSet>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string, callback: AsyncCallback\<KvStoreResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getResultSet|@ohos.data.distributedData.d.ts|
575|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string): Promise\<KvStoreResultSet>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSet(keyPrefix: string): Promise\<KvStoreResultSet>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
576|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getResultSet|@ohos.data.distributedData.d.ts|
577|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getResultSet|@ohos.data.distributedData.d.ts|
578|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KvStoreResultSet>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KvStoreResultSet>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
579|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KvStoreResultSet>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(query: Query): Promise\<KvStoreResultSet>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
580|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#closeResultSet|@ohos.data.distributedData.d.ts|
581|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#closeResultSet|@ohos.data.distributedData.d.ts|
582|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet): Promise\<void>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
583|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet): Promise\<void>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: closeResultSet(resultSet: KvStoreResultSet): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
584|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getResultSize|@ohos.data.distributedData.d.ts|
585|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getResultSize|@ohos.data.distributedData.d.ts|
586|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
587|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(query: Query): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
588|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#removeDeviceData|@ohos.data.distributedData.d.ts|
589|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#removeDeviceData|@ohos.data.distributedData.d.ts|
590|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string): Promise\<void>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
591|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string): Promise\<void>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: removeDeviceData(deviceId: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
592|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#sync|@ohos.data.distributedData.d.ts|
593|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#sync|@ohos.data.distributedData.d.ts|
594|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#setSyncParam|@ohos.data.distributedData.d.ts|
595|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number): Promise\<void>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: setSyncParam(defaultAllowedDelayMs: number): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
596|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(callback: AsyncCallback\<SecurityLevel>): void;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(callback: AsyncCallback\<SecurityLevel>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore#getSecurityLevel|@ohos.data.distributedData.d.ts|
597|Deprecated version changed|Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(): Promise\<SecurityLevel>;<br>Old version: |Class name: SingleKVStore;<br>Method or attribute name: getSecurityLevel(): Promise\<SecurityLevel>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.SingleKVStore|@ohos.data.distributedData.d.ts|
598|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: interface DeviceKVStore<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: interface DeviceKVStore<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
599|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string, callback: AsyncCallback\<boolean \| string \| number \| Uint8Array>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string, callback: AsyncCallback\<boolean \| string \| number \| Uint8Array>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#get|@ohos.data.distributedData.d.ts|
600|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string): Promise\<boolean \| string \| number \| Uint8Array>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: get(deviceId: string, key: string): Promise\<boolean \| string \| number \| Uint8Array>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
601|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string, callback: AsyncCallback\<Entry[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getEntries|@ohos.data.distributedData.d.ts|
602|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string): Promise\<Entry[]>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, keyPrefix: string): Promise\<Entry[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
603|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query, callback: AsyncCallback\<Entry[]>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query, callback: AsyncCallback\<Entry[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getEntries|@ohos.data.distributedData.d.ts|
604|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query): Promise\<Entry[]>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getEntries(deviceId: string, query: Query): Promise\<Entry[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
605|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\<KvStoreResultSet>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string, callback: AsyncCallback\<KvStoreResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getResultSet|@ohos.data.distributedData.d.ts|
606|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string): Promise\<KvStoreResultSet>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, keyPrefix: string): Promise\<KvStoreResultSet>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
607|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query, callback: AsyncCallback\<KvStoreResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getResultSet|@ohos.data.distributedData.d.ts|
608|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query): Promise\<KvStoreResultSet>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSet(deviceId: string, query: Query): Promise\<KvStoreResultSet>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
609|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore#getResultSize|@ohos.data.distributedData.d.ts|
610|Deprecated version changed|Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query): Promise\<number>;<br>Old version: |Class name: DeviceKVStore;<br>Method or attribute name: getResultSize(deviceId: string, query: Query): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.DeviceKVStore|@ohos.data.distributedData.d.ts|
611|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: interface KVManager<br>Old version: |Class name: KVManager;<br>Method or attribute name: interface KVManager<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
612|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: getKVStore\<T extends KVStore>(storeId: string, options: Options): Promise\<T>;<br>Old version: |Class name: KVManager;<br>Method or attribute name: getKVStore\<T extends KVStore>(storeId: string, options: Options): Promise\<T>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#getKVStore|@ohos.data.distributedData.d.ts|
613|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: getKVStore\<T extends KVStore>(storeId: string, options: Options, callback: AsyncCallback\<T>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: getKVStore\<T extends KVStore>(storeId: string, options: Options, callback: AsyncCallback\<T>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
614|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string, kvStore: KVStore, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string, kvStore: KVStore, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#closeKVStore|@ohos.data.distributedData.d.ts|
615|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise\<void>;<br>Old version: |Class name: KVManager;<br>Method or attribute name: closeKVStore(appId: string, storeId: string, kvStore: KVStore): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
616|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#deleteKVStore|@ohos.data.distributedData.d.ts|
617|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string): Promise\<void>;<br>Old version: |Class name: KVManager;<br>Method or attribute name: deleteKVStore(appId: string, storeId: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
618|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string, callback: AsyncCallback\<string[]>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string, callback: AsyncCallback\<string[]>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#getAllKVStoreId|@ohos.data.distributedData.d.ts|
619|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string): Promise\<string[]>;<br>Old version: |Class name: KVManager;<br>Method or attribute name: getAllKVStoreId(appId: string): Promise\<string[]>;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager|@ohos.data.distributedData.d.ts|
620|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: on(event: 'distributedDataServiceDie', deathCallback: Callback\<void>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: on(event: 'distributedDataServiceDie', deathCallback: Callback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#on|@ohos.data.distributedData.d.ts|
621|Deprecated version changed|Class name: KVManager;<br>Method or attribute name: off(event: 'distributedDataServiceDie', deathCallback?: Callback\<void>): void;<br>Old version: |Class name: KVManager;<br>Method or attribute name: off(event: 'distributedDataServiceDie', deathCallback?: Callback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.distributedKVStore.KVManager#off|@ohos.data.distributedData.d.ts|
622|Deprecated version changed|Class name: distributedDataObject;<br>Method or attribute name: function createDistributedObject(source: object): DistributedObject;<br>Old version: |Class name: distributedDataObject;<br>Method or attribute name: function createDistributedObject(source: object): DistributedObject;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.create|@ohos.data.distributedDataObject.d.ts|
623|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: interface DistributedObject<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: interface DistributedObject<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject|@ohos.data.distributedDataObject.d.ts|
624|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: setSessionId(sessionId?: string): boolean;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: setSessionId(sessionId?: string): boolean;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject.setSessionId|@ohos.data.distributedDataObject.d.ts|
625|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\<string> }>): void;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: on(type: 'change', callback: Callback\<{ sessionId: string, fields: Array\<string> }>): void;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject.on|@ohos.data.distributedDataObject.d.ts|
626|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: on(type: 'status',<br><br>           callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: on(type: 'status',<br><br>           callback: Callback\<{ sessionId: string, networkId: string, status: 'online' \| 'offline' }>): void;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject.on|@ohos.data.distributedDataObject.d.ts|
627|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\<string> }>): void;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: off(type: 'change', callback?: Callback\<{ sessionId: string, fields: Array\<string> }>): void;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject.off|@ohos.data.distributedDataObject.d.ts|
628|Deprecated version changed|Class name: DistributedObject;<br>Method or attribute name: off(type: 'status',<br><br>            callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: off(type: 'status',<br><br>            callback?: Callback\<{ sessionId: string, deviceId: string, status: 'online' \| 'offline' }>): void;<br>New version: 9<br>Substitute API: ohos.distributedDataObject.DataObject.off|@ohos.data.distributedDataObject.d.ts|
629|Deprecated version changed|Class name: rdb;<br>Method or attribute name: declare rdb<br>Old version: |Class name: rdb;<br>Method or attribute name: declare rdb<br>New version: 9<br>Substitute API: ohos.data.relationalStore|@ohos.data.rdb.d.ts|
630|Deprecated version changed|Class name: rdb;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback\<RdbStore>): void;<br>Old version: |Class name: rdb;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig, version: number, callback: AsyncCallback\<RdbStore>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.getRdbStore|@ohos.data.rdb.d.ts|
631|Deprecated version changed|Class name: rdb;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig, version: number): Promise\<RdbStore>;<br>Old version: |Class name: rdb;<br>Method or attribute name: function getRdbStore(context: Context, config: StoreConfig, version: number): Promise\<RdbStore>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.getRdbStore|@ohos.data.rdb.d.ts|
632|Deprecated version changed|Class name: rdb;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: rdb;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.deleteRdbStore|@ohos.data.rdb.d.ts|
633|Deprecated version changed|Class name: rdb;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string): Promise\<void>;<br>Old version: |Class name: rdb;<br>Method or attribute name: function deleteRdbStore(context: Context, name: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.deleteRdbStore|@ohos.data.rdb.d.ts|
634|Deprecated version changed|Class name: rdb;<br>Method or attribute name: type ValueType = number \| string \| boolean;<br>Old version: |Class name: rdb;<br>Method or attribute name: type ValueType = number \| string \| boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ValueType|@ohos.data.rdb.d.ts|
635|Deprecated version changed|Class name: rdb;<br>Method or attribute name: type ValuesBucket = { [key:string]: ValueType \| Uint8Array \| null;<br>}<br>Old version: |Class name: rdb;<br>Method or attribute name: type ValuesBucket = { [key:string]: ValueType \| Uint8Array \| null;<br>}<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ValuesBucket|@ohos.data.rdb.d.ts|
636|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: enum SyncMode<br>Old version: |Class name: SyncMode;<br>Method or attribute name: enum SyncMode<br>New version: 9<br>Substitute API: ohos.data.relationalStore.SyncMode|@ohos.data.rdb.d.ts|
637|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PUSH = 0<br>Old version: |Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PUSH = 0<br>New version: 9<br>Substitute API: ohos.data.relationalStore.SyncMode.SYNC_MODE_PUSH|@ohos.data.rdb.d.ts|
638|Deprecated version changed|Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PULL = 1<br>Old version: |Class name: SyncMode;<br>Method or attribute name: SYNC_MODE_PULL = 1<br>New version: 9<br>Substitute API: ohos.data.relationalStore.SyncMode.SYNC_MODE_PULL|@ohos.data.rdb.d.ts|
639|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>New version: 9<br>Substitute API: ohos.data.relationalStore.SubscribeType|@ohos.data.rdb.d.ts|
640|Deprecated version changed|Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE = 0<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: SUBSCRIBE_TYPE_REMOTE = 0<br>New version: 9<br>Substitute API: ohos.data.relationalStore.SubscribeType.SUBSCRIBE_TYPE_REMOTE|@ohos.data.rdb.d.ts|
641|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: interface RdbStore<br>Old version: |Class name: RdbStore;<br>Method or attribute name: interface RdbStore<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore|@ohos.data.rdb.d.ts|
642|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.insert|@ohos.data.rdb.d.ts|
643|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket): Promise\<number>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.insert|@ohos.data.rdb.d.ts|
644|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.update|@ohos.data.rdb.d.ts|
645|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates): Promise\<number>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.update|@ohos.data.rdb.d.ts|
646|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates, callback: AsyncCallback\<number>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.delete|@ohos.data.rdb.d.ts|
647|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates): Promise\<number>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates): Promise\<number>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.delete|@ohos.data.rdb.d.ts|
648|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.query|@ohos.data.rdb.d.ts|
649|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns ?: Array\<string>): Promise\<ResultSet>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns ?: Array\<string>): Promise\<ResultSet>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.query|@ohos.data.rdb.d.ts|
650|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<ResultSet>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<ResultSet>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.querySql|@ohos.data.rdb.d.ts|
651|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<ResultSet>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: querySql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<ResultSet>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.querySql|@ohos.data.rdb.d.ts|
652|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs: Array\<ValueType>, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.executeSql|@ohos.data.rdb.d.ts|
653|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<void>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: executeSql(sql: string, bindArgs ?: Array\<ValueType>): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.executeSql|@ohos.data.rdb.d.ts|
654|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: beginTransaction(): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: beginTransaction(): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.beginTransaction|@ohos.data.rdb.d.ts|
655|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: commit(): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: commit(): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.commit|@ohos.data.rdb.d.ts|
656|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: rollBack(): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: rollBack(): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.rollBack|@ohos.data.rdb.d.ts|
657|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.setDistributedTables|@ohos.data.rdb.d.ts|
658|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>): Promise\<void>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.setDistributedTables|@ohos.data.rdb.d.ts|
659|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\<string>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\<string>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.obtainDistributedTableName|@ohos.data.rdb.d.ts|
660|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string): Promise\<string>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string): Promise\<string>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.obtainDistributedTableName|@ohos.data.rdb.d.ts|
661|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\<Array\<[ string, number ]>>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\<Array\<[ string, number ]>>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.sync|@ohos.data.rdb.d.ts|
662|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates): Promise\<Array\<[ string, number ]>>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates): Promise\<Array\<[ string, number ]>>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.sync|@ohos.data.rdb.d.ts|
663|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: on(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.on|@ohos.data.rdb.d.ts|
664|Deprecated version changed|Class name: RdbStore;<br>Method or attribute name: off(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: off(event: 'dataChange', type: SubscribeType, observer: Callback\<Array\<string>>): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbStore.off|@ohos.data.rdb.d.ts|
665|Deprecated version changed|Class name: StoreConfig;<br>Method or attribute name: interface StoreConfig<br>Old version: |Class name: StoreConfig;<br>Method or attribute name: interface StoreConfig<br>New version: 9<br>Substitute API: ohos.data.relationalStore.StoreConfig|@ohos.data.rdb.d.ts|
666|Deprecated version changed|Class name: StoreConfig;<br>Method or attribute name: name: string;<br>Old version: |Class name: StoreConfig;<br>Method or attribute name: name: string;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.StoreConfig|@ohos.data.rdb.d.ts|
667|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: class RdbPredicates<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: class RdbPredicates<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates|@ohos.data.rdb.d.ts|
668|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: constructor(name: string)<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: constructor(name: string)<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.constructor|@ohos.data.rdb.d.ts|
669|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: inDevices(devices: Array\<string>): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: inDevices(devices: Array\<string>): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.inDevices|@ohos.data.rdb.d.ts|
670|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: inAllDevices(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: inAllDevices(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.inAllDevices|@ohos.data.rdb.d.ts|
671|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: equalTo(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: equalTo(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.equalTo|@ohos.data.rdb.d.ts|
672|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: notEqualTo(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: notEqualTo(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.notEqualTo|@ohos.data.rdb.d.ts|
673|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: beginWrap(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: beginWrap(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.beginWrap|@ohos.data.rdb.d.ts|
674|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: endWrap(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: endWrap(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.endWrap|@ohos.data.rdb.d.ts|
675|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: or(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: or(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.or|@ohos.data.rdb.d.ts|
676|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: and(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: and(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.and|@ohos.data.rdb.d.ts|
677|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: contains(field: string, value: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: contains(field: string, value: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.contains|@ohos.data.rdb.d.ts|
678|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: beginsWith(field: string, value: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: beginsWith(field: string, value: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.beginsWith|@ohos.data.rdb.d.ts|
679|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: endsWith(field: string, value: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: endsWith(field: string, value: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.endsWith|@ohos.data.rdb.d.ts|
680|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: isNull(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: isNull(field: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.isNull|@ohos.data.rdb.d.ts|
681|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: isNotNull(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: isNotNull(field: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.isNotNull|@ohos.data.rdb.d.ts|
682|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: like(field: string, value: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: like(field: string, value: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.like|@ohos.data.rdb.d.ts|
683|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: glob(field: string, value: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: glob(field: string, value: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.glob|@ohos.data.rdb.d.ts|
684|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: between(field: string, low: ValueType, high: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: between(field: string, low: ValueType, high: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.between|@ohos.data.rdb.d.ts|
685|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.notBetween|@ohos.data.rdb.d.ts|
686|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: greaterThan(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: greaterThan(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.greaterThan|@ohos.data.rdb.d.ts|
687|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: lessThan(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: lessThan(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.lessThan|@ohos.data.rdb.d.ts|
688|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.greaterThanOrEqualTo|@ohos.data.rdb.d.ts|
689|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.lessThanOrEqualTo|@ohos.data.rdb.d.ts|
690|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: orderByAsc(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: orderByAsc(field: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.orderByAsc|@ohos.data.rdb.d.ts|
691|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: orderByDesc(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: orderByDesc(field: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.orderByDesc|@ohos.data.rdb.d.ts|
692|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: distinct(): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: distinct(): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.distinct|@ohos.data.rdb.d.ts|
693|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: limitAs(value: number): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: limitAs(value: number): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.limitAs|@ohos.data.rdb.d.ts|
694|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: offsetAs(rowOffset: number): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: offsetAs(rowOffset: number): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.offsetAs|@ohos.data.rdb.d.ts|
695|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: groupBy(fields: Array\<string>): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: groupBy(fields: Array\<string>): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.groupBy|@ohos.data.rdb.d.ts|
696|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: indexedBy(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: indexedBy(field: string): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.indexedBy|@ohos.data.rdb.d.ts|
697|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: in(field: string, value: Array\<ValueType>): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: in(field: string, value: Array\<ValueType>): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.in|@ohos.data.rdb.d.ts|
698|Deprecated version changed|Class name: RdbPredicates;<br>Method or attribute name: notIn(field: string, value: Array\<ValueType>): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: notIn(field: string, value: Array\<ValueType>): RdbPredicates;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.RdbPredicates.notIn|@ohos.data.rdb.d.ts|
699|Deprecated version changed|Class name: storage;<br>Method or attribute name: declare storage<br>Old version: |Class name: storage;<br>Method or attribute name: declare storage<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
700|Deprecated version changed|Class name: storage;<br>Method or attribute name: function getStorageSync(path: string): Storage;<br>Old version: |Class name: storage;<br>Method or attribute name: function getStorageSync(path: string): Storage;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.getPreferences|@ohos.data.storage.d.ts|
701|Deprecated version changed|Class name: storage;<br>Method or attribute name: function getStorage(path: string, callback: AsyncCallback\<Storage>): void;<br>Old version: |Class name: storage;<br>Method or attribute name: function getStorage(path: string, callback: AsyncCallback\<Storage>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
702|Deprecated version changed|Class name: storage;<br>Method or attribute name: function getStorage(path: string): Promise\<Storage>;<br>Old version: |Class name: storage;<br>Method or attribute name: function getStorage(path: string): Promise\<Storage>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
703|Deprecated version changed|Class name: storage;<br>Method or attribute name: function deleteStorageSync(path: string): void;<br>Old version: |Class name: storage;<br>Method or attribute name: function deleteStorageSync(path: string): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.deletePreferences|@ohos.data.storage.d.ts|
704|Deprecated version changed|Class name: storage;<br>Method or attribute name: function deleteStorage(path: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: storage;<br>Method or attribute name: function deleteStorage(path: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
705|Deprecated version changed|Class name: storage;<br>Method or attribute name: function deleteStorage(path: string): Promise\<void>;<br>Old version: |Class name: storage;<br>Method or attribute name: function deleteStorage(path: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
706|Deprecated version changed|Class name: storage;<br>Method or attribute name: function removeStorageFromCacheSync(path: string): void;<br>Old version: |Class name: storage;<br>Method or attribute name: function removeStorageFromCacheSync(path: string): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.removePreferencesFromCache|@ohos.data.storage.d.ts|
707|Deprecated version changed|Class name: storage;<br>Method or attribute name: function removeStorageFromCache(path: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: storage;<br>Method or attribute name: function removeStorageFromCache(path: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
708|Deprecated version changed|Class name: storage;<br>Method or attribute name: function removeStorageFromCache(path: string): Promise\<void>;<br>Old version: |Class name: storage;<br>Method or attribute name: function removeStorageFromCache(path: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
709|Deprecated version changed|Class name: storage;<br>Method or attribute name: type ValueType = number \| string \| boolean;<br>Old version: |Class name: storage;<br>Method or attribute name: type ValueType = number \| string \| boolean;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
710|Deprecated version changed|Class name: Storage;<br>Method or attribute name: interface Storage<br>Old version: |Class name: Storage;<br>Method or attribute name: interface Storage<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
711|Deprecated version changed|Class name: Storage;<br>Method or attribute name: getSync(key: string, defValue: ValueType): ValueType;<br>Old version: |Class name: Storage;<br>Method or attribute name: getSync(key: string, defValue: ValueType): ValueType;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.get|@ohos.data.storage.d.ts|
712|Deprecated version changed|Class name: Storage;<br>Method or attribute name: get(key: string, defValue: ValueType, callback: AsyncCallback\<ValueType>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: get(key: string, defValue: ValueType, callback: AsyncCallback\<ValueType>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
713|Deprecated version changed|Class name: Storage;<br>Method or attribute name: get(key: string, defValue: ValueType): Promise\<ValueType>;<br>Old version: |Class name: Storage;<br>Method or attribute name: get(key: string, defValue: ValueType): Promise\<ValueType>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
714|Deprecated version changed|Class name: Storage;<br>Method or attribute name: hasSync(key: string): boolean;<br>Old version: |Class name: Storage;<br>Method or attribute name: hasSync(key: string): boolean;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.has|@ohos.data.storage.d.ts|
715|Deprecated version changed|Class name: Storage;<br>Method or attribute name: has(key: string, callback: AsyncCallback\<boolean>): boolean;<br>Old version: |Class name: Storage;<br>Method or attribute name: has(key: string, callback: AsyncCallback\<boolean>): boolean;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
716|Deprecated version changed|Class name: Storage;<br>Method or attribute name: has(key: string): Promise\<boolean>;<br>Old version: |Class name: Storage;<br>Method or attribute name: has(key: string): Promise\<boolean>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
717|Deprecated version changed|Class name: Storage;<br>Method or attribute name: putSync(key: string, value: ValueType): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: putSync(key: string, value: ValueType): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.put|@ohos.data.storage.d.ts|
718|Deprecated version changed|Class name: Storage;<br>Method or attribute name: put(key: string, value: ValueType, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: put(key: string, value: ValueType, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
719|Deprecated version changed|Class name: Storage;<br>Method or attribute name: put(key: string, value: ValueType): Promise\<void>;<br>Old version: |Class name: Storage;<br>Method or attribute name: put(key: string, value: ValueType): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
720|Deprecated version changed|Class name: Storage;<br>Method or attribute name: deleteSync(key: string): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: deleteSync(key: string): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.delete|@ohos.data.storage.d.ts|
721|Deprecated version changed|Class name: Storage;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: delete(key: string, callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
722|Deprecated version changed|Class name: Storage;<br>Method or attribute name: delete(key: string): Promise\<void>;<br>Old version: |Class name: Storage;<br>Method or attribute name: delete(key: string): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
723|Deprecated version changed|Class name: Storage;<br>Method or attribute name: clearSync(): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: clearSync(): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.clear|@ohos.data.storage.d.ts|
724|Deprecated version changed|Class name: Storage;<br>Method or attribute name: clear(callback: AsyncCallback\<void>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: clear(callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
725|Deprecated version changed|Class name: Storage;<br>Method or attribute name: clear(): Promise\<void>;<br>Old version: |Class name: Storage;<br>Method or attribute name: clear(): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
726|Deprecated version changed|Class name: Storage;<br>Method or attribute name: flushSync(): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: flushSync(): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.flush|@ohos.data.storage.d.ts|
727|Deprecated version changed|Class name: Storage;<br>Method or attribute name: flush(callback: AsyncCallback\<void>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: flush(callback: AsyncCallback\<void>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
728|Deprecated version changed|Class name: Storage;<br>Method or attribute name: flush(): Promise\<void>;<br>Old version: |Class name: Storage;<br>Method or attribute name: flush(): Promise\<void>;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
729|Deprecated version changed|Class name: Storage;<br>Method or attribute name: on(type: 'change', callback: Callback\<StorageObserver>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: on(type: 'change', callback: Callback\<StorageObserver>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.on|@ohos.data.storage.d.ts|
730|Deprecated version changed|Class name: Storage;<br>Method or attribute name: off(type: 'change', callback: Callback\<StorageObserver>): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: off(type: 'change', callback: Callback\<StorageObserver>): void;<br>New version: 9<br>Substitute API: ohos.preferences.preferences.off|@ohos.data.storage.d.ts|
731|Deprecated version changed|Class name: StorageObserver;<br>Method or attribute name: interface StorageObserver<br>Old version: |Class name: StorageObserver;<br>Method or attribute name: interface StorageObserver<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
732|Deprecated version changed|Class name: StorageObserver;<br>Method or attribute name: key: string;<br>Old version: |Class name: StorageObserver;<br>Method or attribute name: key: string;<br>New version: 9<br>Substitute API: ohos.preferences.preferences|@ohos.data.storage.d.ts|
733|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: export interface GetStorageOptions<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: export interface GetStorageOptions<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
734|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: key: string;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
735|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: key: string;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
736|Deprecated version changed|Class name: DeleteStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: key: string;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
737|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: default?: string;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: default?: string;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
738|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: success?: (data: any) => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: success?: (data: any) => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
739|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
740|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
741|Deprecated version changed|Class name: ClearStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
742|Deprecated version changed|Class name: DeleteStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
743|Deprecated version changed|Class name: GetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
744|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
745|Deprecated version changed|Class name: ClearStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
746|Deprecated version changed|Class name: DeleteStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
747|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: export interface SetStorageOptions<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: export interface SetStorageOptions<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
748|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: value: string;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: value: string;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
749|Deprecated version changed|Class name: SetStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
750|Deprecated version changed|Class name: ClearStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
751|Deprecated version changed|Class name: DeleteStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
752|Deprecated version changed|Class name: ClearStorageOptions;<br>Method or attribute name: export interface ClearStorageOptions<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: export interface ClearStorageOptions<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
753|Deprecated version changed|Class name: DeleteStorageOptions;<br>Method or attribute name: export interface DeleteStorageOptions<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: export interface DeleteStorageOptions<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
754|Deprecated version changed|Class name: Storage;<br>Method or attribute name: export default class Storage<br>Old version: |Class name: Storage;<br>Method or attribute name: export default class Storage<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
755|Deprecated version changed|Class name: Storage;<br>Method or attribute name: static get(options: GetStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static get(options: GetStorageOptions): void;<br>New version: 6<br>Substitute API: ohos.preferences.preferences.get|@system.storage.d.ts|
756|Deprecated version changed|Class name: Storage;<br>Method or attribute name: static set(options: SetStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static set(options: SetStorageOptions): void;<br>New version: 6<br>Substitute API: |@system.storage.d.ts|
757|Deprecated version changed|Class name: Storage;<br>Method or attribute name: static clear(options?: ClearStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static clear(options?: ClearStorageOptions): void;<br>New version: 6<br>Substitute API: ohos.preferences.preferences.clear|@system.storage.d.ts|
758|Deprecated version changed|Class name: Storage;<br>Method or attribute name: static delete(options: DeleteStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static delete(options: DeleteStorageOptions): void;<br>New version: 6<br>Substitute API: ohos.preferences.preferences.delete|@system.storage.d.ts|
759|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: export interface ResultSet<br>Old version: |Class name: ResultSet;<br>Method or attribute name: export interface ResultSet<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet|resultSet.d.ts|
760|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: columnNames: Array\<string>;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: columnNames: Array\<string>;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.columnNames|resultSet.d.ts|
761|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: columnCount: number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: columnCount: number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.columnCount|resultSet.d.ts|
762|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: rowCount: number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: rowCount: number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.rowCount|resultSet.d.ts|
763|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: rowIndex: number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: rowIndex: number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.rowIndex|resultSet.d.ts|
764|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isAtFirstRow: boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isAtFirstRow: boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isAtFirstRow|resultSet.d.ts|
765|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isAtLastRow: boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isAtLastRow: boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isAtLastRow|resultSet.d.ts|
766|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isEnded: boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isEnded: boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isEnded|resultSet.d.ts|
767|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isStarted: boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isStarted: boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isStarted|resultSet.d.ts|
768|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isClosed: boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isClosed: boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isClosed|resultSet.d.ts|
769|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getColumnIndex(columnName: string): number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getColumnIndex(columnName: string): number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getColumnIndex|resultSet.d.ts|
770|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getColumnName(columnIndex: number): string;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getColumnName(columnIndex: number): string;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getColumnName|resultSet.d.ts|
771|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goTo(offset: number): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goTo(offset: number): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goTo|resultSet.d.ts|
772|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goToRow(position: number): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goToRow(position: number): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goToRow|resultSet.d.ts|
773|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goToFirstRow(): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goToFirstRow(): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goToFirstRow|resultSet.d.ts|
774|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goToLastRow(): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goToLastRow(): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goToLastRow|resultSet.d.ts|
775|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goToNextRow(): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goToNextRow(): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goToNextRow|resultSet.d.ts|
776|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: goToPreviousRow(): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: goToPreviousRow(): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.goToPreviousRow|resultSet.d.ts|
777|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getBlob(columnIndex: number): Uint8Array;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getBlob(columnIndex: number): Uint8Array;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getBlob|resultSet.d.ts|
778|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getString(columnIndex: number): string;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getString(columnIndex: number): string;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getString|resultSet.d.ts|
779|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getLong(columnIndex: number): number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getLong(columnIndex: number): number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getLong|resultSet.d.ts|
780|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: getDouble(columnIndex: number): number;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: getDouble(columnIndex: number): number;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.getDouble|resultSet.d.ts|
781|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: isColumnNull(columnIndex: number): boolean;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: isColumnNull(columnIndex: number): boolean;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.isColumnNull|resultSet.d.ts|
782|Deprecated version changed|Class name: ResultSet;<br>Method or attribute name: close(): void;<br>Old version: |Class name: ResultSet;<br>Method or attribute name: close(): void;<br>New version: 9<br>Substitute API: ohos.data.relationalStore.ResultSet.close|resultSet.d.ts|
783|Error code added|Class name: Query;<br>Method or attribute name: deviceId(deviceId: string): Query;<br>Old version: |Class name: Query;<br>Method or attribute name: deviceId(deviceId: string): Query;<br>New version: Throws|@ohos.data.distributedData.d.ts|
784|Error code added|Class name: RdbPredicates;<br>Method or attribute name: isNotNull(field: string): RdbPredicates;<br>Old version: |Class name: RdbPredicates;<br>Method or attribute name: isNotNull(field: string): RdbPredicates;<br>New version: 401|@ohos.data.rdb.d.ts|
785|Permission changed|Class name: DistributedObject;<br>Method or attribute name: setSessionId(sessionId?: string): boolean;<br>Old version: |Class name: DistributedObject;<br>Method or attribute name: setSessionId(sessionId?: string): boolean;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.distributedDataObject.d.ts|
786|Permission changed|Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>Old version: |Class name: SubscribeType;<br>Method or attribute name: enum SubscribeType<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
787|Permission changed|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>, callback: AsyncCallback\<void>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>, callback: AsyncCallback\<void>): void;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
788|Permission changed|Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>): Promise\<void>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: setDistributedTables(tables: Array\<string>): Promise\<void>;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
789|Permission changed|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\<string>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string, callback: AsyncCallback\<string>): void;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
790|Permission changed|Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string): Promise\<string>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: obtainDistributedTableName(device: string, table: string): Promise\<string>;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
791|Permission changed|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\<Array\<[ string, number ]>>): void;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback\<Array\<[ string, number ]>>): void;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
792|Permission changed|Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates): Promise\<Array\<[ string, number ]>>;<br>Old version: |Class name: RdbStore;<br>Method or attribute name: sync(mode: SyncMode, predicates: RdbPredicates): Promise\<Array\<[ string, number ]>>;<br>New version: ohos.permission.DISTRIBUTED_DATASYNC|@ohos.data.rdb.d.ts|
793|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: export interface GetStorageOptions<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: export interface GetStorageOptions<br>New version: FAModelOnly|@system.storage.d.ts|
794|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: key: string;<br>New version: FAModelOnly|@system.storage.d.ts|
795|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: key: string;<br>New version: FAModelOnly|@system.storage.d.ts|
796|Model changed|Class name: DeleteStorageOptions;<br>Method or attribute name: key: string;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: key: string;<br>New version: FAModelOnly|@system.storage.d.ts|
797|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: default?: string;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: default?: string;<br>New version: FAModelOnly|@system.storage.d.ts|
798|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: success?: (data: any) => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: success?: (data: any) => void;<br>New version: FAModelOnly|@system.storage.d.ts|
799|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: FAModelOnly|@system.storage.d.ts|
800|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: FAModelOnly|@system.storage.d.ts|
801|Model changed|Class name: ClearStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: FAModelOnly|@system.storage.d.ts|
802|Model changed|Class name: DeleteStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: fail?: (data: string, code: number) => void;<br>New version: FAModelOnly|@system.storage.d.ts|
803|Model changed|Class name: GetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: GetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
804|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
805|Model changed|Class name: ClearStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
806|Model changed|Class name: DeleteStorageOptions;<br>Method or attribute name: complete?: () => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: complete?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
807|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: export interface SetStorageOptions<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: export interface SetStorageOptions<br>New version: FAModelOnly|@system.storage.d.ts|
808|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: value: string;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: value: string;<br>New version: FAModelOnly|@system.storage.d.ts|
809|Model changed|Class name: SetStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: SetStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
810|Model changed|Class name: ClearStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
811|Model changed|Class name: DeleteStorageOptions;<br>Method or attribute name: success?: () => void;<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: success?: () => void;<br>New version: FAModelOnly|@system.storage.d.ts|
812|Model changed|Class name: ClearStorageOptions;<br>Method or attribute name: export interface ClearStorageOptions<br>Old version: |Class name: ClearStorageOptions;<br>Method or attribute name: export interface ClearStorageOptions<br>New version: FAModelOnly|@system.storage.d.ts|
813|Model changed|Class name: DeleteStorageOptions;<br>Method or attribute name: export interface DeleteStorageOptions<br>Old version: |Class name: DeleteStorageOptions;<br>Method or attribute name: export interface DeleteStorageOptions<br>New version: FAModelOnly|@system.storage.d.ts|
814|Model changed|Class name: Storage;<br>Method or attribute name: export default class Storage<br>Old version: |Class name: Storage;<br>Method or attribute name: export default class Storage<br>New version: FAModelOnly|@system.storage.d.ts|
815|Model changed|Class name: Storage;<br>Method or attribute name: static get(options: GetStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static get(options: GetStorageOptions): void;<br>New version: FAModelOnly|@system.storage.d.ts|
816|Model changed|Class name: Storage;<br>Method or attribute name: static set(options: SetStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static set(options: SetStorageOptions): void;<br>New version: FAModelOnly|@system.storage.d.ts|
817|Model changed|Class name: Storage;<br>Method or attribute name: static clear(options?: ClearStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static clear(options?: ClearStorageOptions): void;<br>New version: FAModelOnly|@system.storage.d.ts|
818|Model changed|Class name: Storage;<br>Method or attribute name: static delete(options: DeleteStorageOptions): void;<br>Old version: |Class name: Storage;<br>Method or attribute name: static delete(options: DeleteStorageOptions): void;<br>New version: FAModelOnly|@system.storage.d.ts|
819|Function changed|Class name: KVStore;<br>Method or attribute name: off(event:'dataChange', observer?: Callback\<ChangeNotification>): void;|Class name: KVStore;<br>Method or attribute name: off(event: 'dataChange', listener?: Callback\<ChangeNotification>): void;|@ohos.data.distributedData.d.ts|
820|Function changed|Class name: KVStore;<br>Method or attribute name: off(event:'dataChange', observer?: Callback\<ChangeNotification>): void;|Class name: KVStore;<br>Method or attribute name: off(event: 'syncComplete', syncCallback?: Callback\<Array\<[string, number]>>): void;|@ohos.data.distributedData.d.ts|
821|Function changed|Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIdList: string[], mode: SyncMode, allowedDelayMs?: number): void;|Class name: SingleKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;|@ohos.data.distributedData.d.ts|
822|Function changed|Class name: DeviceKVStore;<br>Method or attribute name: sync(deviceIdList: string[], mode: SyncMode, allowedDelayMs?: number): void;|Class name: DeviceKVStore;<br>Method or attribute name: sync(deviceIds: string[], mode: SyncMode, delayMs?: number): void;|@ohos.data.distributedData.d.ts|
823|Function changed|Class name: RdbStore;<br>Method or attribute name: insert(name: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket, callback: AsyncCallback\<number>): void;|@ohos.data.rdb.d.ts|
824|Function changed|Class name: RdbStore;<br>Method or attribute name: insert(name: string, values: ValuesBucket): Promise\<number>;|Class name: RdbStore;<br>Method or attribute name: insert(table: string, values: ValuesBucket): Promise\<number>;|@ohos.data.rdb.d.ts|
825|Function changed|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, rdbPredicates: RdbPredicates, callback: AsyncCallback\<number>): void;|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback\<number>): void;|@ohos.data.rdb.d.ts|
826|Function changed|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, rdbPredicates: RdbPredicates): Promise\<number>;|Class name: RdbStore;<br>Method or attribute name: update(values: ValuesBucket, predicates: RdbPredicates): Promise\<number>;|@ohos.data.rdb.d.ts|
827|Function changed|Class name: RdbStore;<br>Method or attribute name: delete(rdbPredicates: RdbPredicates, callback: AsyncCallback\<number>): void;|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates, callback: AsyncCallback\<number>): void;|@ohos.data.rdb.d.ts|
828|Function changed|Class name: RdbStore;<br>Method or attribute name: delete(rdbPredicates: RdbPredicates): Promise\<number>;|Class name: RdbStore;<br>Method or attribute name: delete(predicates: RdbPredicates): Promise\<number>;|@ohos.data.rdb.d.ts|
829|Function changed|Class name: RdbStore;<br>Method or attribute name: query(rdbPredicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns: Array\<string>, callback: AsyncCallback\<ResultSet>): void;|@ohos.data.rdb.d.ts|
830|Function changed|Class name: RdbStore;<br>Method or attribute name: query(rdbPredicates: RdbPredicates, columns?: Array\<string>): Promise\<ResultSet>;|Class name: RdbStore;<br>Method or attribute name: query(predicates: RdbPredicates, columns ?: Array\<string>): Promise\<ResultSet>;|@ohos.data.rdb.d.ts|
831