rdbStore deviceId 修改

Signed-off-by: yuxiaoya2 <yuxiaoya@huawei.com>
Change-Id: I57426881a685d3b8ff282701036c0cf848b7ab07
This commit is contained in:
yuxiaoya2 2023-05-16 10:36:41 +08:00
parent 6ef1ade237
commit f558e507ae

View File

@ -109,7 +109,7 @@ export default function rdbSyncFirstLevelTest(){
localDeviceId = deviceManager.getLocalDeviceInfoSync().deviceId;
console.info(logTag + "local device id is: " + localDeviceId);
deviceList = deviceManager.getTrustedDeviceListSync();
deviceId = deviceList[0].deviceId;
deviceId = deviceList[0].networkId;
syncDeviceIds = [deviceId];
dmInstance = deviceManager;
dmInstance.on("deviceStateChange", (data) => {
@ -1533,9 +1533,8 @@ export default function rdbSyncFirstLevelTest(){
var rdbSecondStore = {};
const STORE_CONFIGS2 = {
name: "RemoteRdb.db",
securityLevel: data_Rdb.SecurityLevel.S2
securityLevel: data_Rdb.SecurityLevel.S1
};
rdbSecondStore = await data_Rdb.getRdbStore(context, STORE_CONFIGS2);
console.info("testRdbSyncTest0200 create RemoteRdb.db success");
await rdbSecondStore.executeSql(CREATE_TABLE_TEST, null);
@ -1611,10 +1610,9 @@ export default function rdbSyncFirstLevelTest(){
var rdbENStore = {};
const STORE_CONFIGS3 = {
name: "RemoteRdb.db",
securityLevel: data_Rdb.SecurityLevel.S2
securityLevel: data_Rdb.SecurityLevel.S1
};
const CREATE_TABLE_TEST_S3 = "CREATE TABLE IF NOT EXISTS testENSecond (" + "id INTEGER PRIMARY KEY AUTOINCREMENT, " + "name TEXT NOT NULL, " + "age INTEGER, " + "salary REAL, " + "blobType BLOB)";
rdbENStore = await data_Rdb.getRdbStore(context, STORE_CONFIGS3);
console.info("testRdbSyncTest0210 create RemoteRdb.db success");
await rdbENStore.executeSql(CREATE_TABLE_TEST_S3, null);