1315b9658Sopenharmony_ci/** 2315b9658Sopenharmony_ci * Copyright (c) 2021-2023 Huawei Device Co., Ltd. 3315b9658Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4315b9658Sopenharmony_ci * you may not use this file except in compliance with the License. 5315b9658Sopenharmony_ci * You may obtain a copy of the License at 6315b9658Sopenharmony_ci * 7315b9658Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8315b9658Sopenharmony_ci * 9315b9658Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10315b9658Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11315b9658Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12315b9658Sopenharmony_ci * See the License for the specific language governing permissions and 13315b9658Sopenharmony_ci * limitations under the License. 14315b9658Sopenharmony_ci */ 15315b9658Sopenharmony_ci 16315b9658Sopenharmony_ciinterface SettingsDataBaseConfig { 17315b9658Sopenharmony_ci DB_NAME: string; 18315b9658Sopenharmony_ci TABLE_NAME: string; 19315b9658Sopenharmony_ci USER_TABLE_NAME: string; 20315b9658Sopenharmony_ci SECURE_TABLE_NAME: string; 21315b9658Sopenharmony_ci FIELD_ID: string; 22315b9658Sopenharmony_ci FIELD_KEYWORD: string; 23315b9658Sopenharmony_ci FIELD_VALUE: string; 24315b9658Sopenharmony_ci} 25315b9658Sopenharmony_ciconst SettingsDataConfig: SettingsDataBaseConfig = { 26315b9658Sopenharmony_ci DB_NAME: 'settingsdata.db', 27315b9658Sopenharmony_ci TABLE_NAME: 'SETTINGSDATA', 28315b9658Sopenharmony_ci USER_TABLE_NAME: 'USER_SETTINGSDATA', 29315b9658Sopenharmony_ci SECURE_TABLE_NAME: 'USER_SETTINGSDATA_SECURE', 30315b9658Sopenharmony_ci FIELD_ID: 'ID', 31315b9658Sopenharmony_ci FIELD_KEYWORD: 'KEYWORD', 32315b9658Sopenharmony_ci FIELD_VALUE: 'VALUE' 33315b9658Sopenharmony_ci}; 34315b9658Sopenharmony_ci 35315b9658Sopenharmony_ciexport default SettingsDataConfig; 36