Searched refs:tableVect (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_multi_ver_data_storage.cpp | 84 std::vector<std::string> tableVect; in GetVersion() local 85 …OpenDbProperties option = {uri, property.isNeedCreate, false, tableVect, property.cipherType, prop… in GetVersion() 98 std::vector<std::string> tableVect; in Open() local 99 tableVect.push_back(CREATE_TABLE_SQL); in Open() 100 tableVect.push_back(CREATE_TABLE_VERSION_INDEX_SQL); in Open() 101 tableVect.push_back(CREATE_TABLE_FLAG_INDEX_SQL); in Open() 103 …OpenDbProperties option = {uri_, property.isNeedCreate, false, tableVect, property.cipherType, pro… in Open() 329 std::vector<std::string> tableVect; in RunRekeyLogic() local 330 tableVect.push_back(CREATE_TABLE_SQL); in RunRekeyLogic() 354 std::vector<std::string> tableVect; in RunExportLogic() local [all …]
|
H A D | sqlite_multi_ver_transaction.cpp | 143 std::vector<std::string> tableVect; in Initialize() local 144 tableVect.push_back(CREATE_TABLE_SQL); in Initialize() 145 tableVect.push_back(CREATE_TABLE_VERSION_INDEX_SQL); in Initialize() 146 tableVect.push_back(CREATE_TABLE_FLAG_INDEX_SQL); in Initialize() 147 OpenDbProperties option = {uri, true, false, tableVect, type, passwd}; in Initialize() 834 std::vector<std::string> tableVect = {CREATE_TABLE_SQL}; in Reset() local 835 OpenDbProperties option = {uri_, true, false, tableVect, type, passwd}; in Reset()
|