Home
last modified time | relevance | path

Searched refs:declType (Results 1 - 4 of 4) sorted by relevance

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_relational_utils.cpp278 const char *declType = sqlite3_column_decltype(stmt, cid); in GetTypeValByStatement() local
279 if (declType == nullptr) { // LCOV_EXCL_BR_LINE in GetTypeValByStatement()
283 if (strcasecmp(declType, SchemaConstant::KEYWORD_TYPE_BOOL.c_str()) == 0 || in GetTypeValByStatement()
284 strcasecmp(declType, SchemaConstant::KEYWORD_TYPE_BOOLEAN.c_str()) == 0) { // LCOV_EXCL_BR_LINE in GetTypeValByStatement()
318 const char *declType = sqlite3_column_decltype(stmt, cid); in GetBlobByStatement() local
320 if (declType != nullptr && strcasecmp(declType, CloudDbConstant::ASSET) == 0) { // LCOV_EXCL_BR_LINE in GetBlobByStatement()
332 } else if (declType != nullptr && strcasecmp(declType, CloudDbConstant::ASSETS) == 0) { in GetBlobByStatement()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dshared_block_serializer_info.cpp92 auto *declType = sqlite3_column_decltype(statement_, column); in PutBlob() local
93 if (declType != nullptr) { in PutBlob()
94 std::string type(declType); in PutBlob()
H A Dshare_block.cpp295 auto *declType = sqlite3_column_decltype(statement, pos); in FillOneRowOfBlob() local
296 if (declType != nullptr) { in FillOneRowOfBlob()
297 std::string type(declType); in FillOneRowOfBlob()
H A Dsqlite_statement.cpp480 auto declType = SqliteUtils::StrToUpper(std::string(decl)); in GetColumnType() local
481 if (declType == ValueObject::DeclType<ValueObject::Asset>()) { in GetColumnType()
483 } else if (declType == ValueObject::DeclType<ValueObject::Assets>()) { in GetColumnType()
485 } else if (declType == ValueObject::DeclType<ValueObject::FloatVector>()) { in GetColumnType()
487 } else if (declType == ValueObject::DeclType<ValueObject::BigInt>()) { in GetColumnType()

Completed in 4 milliseconds