Home
last modified time | relevance | path

Searched refs:BindStatementByType (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/storage/
H A Ddistributeddb_sqlite_relational_utils_test.cpp105 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 1, data["id"]), E_OK); // 1 is id … in PrepareStatement()
106 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 2, data["name"]), E_OK); // 2 is n… in PrepareStatement()
107 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 3, data["height"]), E_OK); // 3 is… in PrepareStatement()
108 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 4, data["married"]), E_OK); // 4 i… in PrepareStatement()
109 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 5, data["photo"]), E_OK); // 5 is … in PrepareStatement()
111 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 6, data["asset"]), E_OK); // 6 is … in PrepareStatement()
112 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 7, data["assets"]), E_OK); // 7 is… in PrepareStatement()
115 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 6, data["asset"]), -E_NOT_INIT); /… in PrepareStatement()
116 …EXPECT_EQ(SQLiteRelationalUtils::BindStatementByType(statement, 7, data["assets"]), -E_NOT_INIT); … in PrepareStatement()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/relational/
H A Dsqlite_relational_utils.h36 static int BindStatementByType(sqlite3_stmt *statement, int cid, Type &typeVal);
H A Dsqlite_relational_utils.cpp162 int SQLiteRelationalUtils::BindStatementByType(sqlite3_stmt *statement, int cid, Type &typeVal) in BindStatementByType() function in DistributedDB::SQLiteRelationalUtils
H A Dsqlite_single_ver_relational_storage_executor_extend.cpp805 …errCode = SQLiteRelationalUtils::BindStatementByType(insertLogStmt, 9, extendValue); // 9 is exten… in BindHashKeyAndGidToInsertLogStatement()
H A Dsqlite_single_ver_relational_storage_extend_executor.cpp421 errCode = SQLiteRelationalUtils::BindStatementByType(statement, i + 1, type); in ExecuteSql()