Searched refs:SqliteBindInt64 (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/base/security/asset/services/db_operator/src/ |
H A D | statement.rs | 34 fn SqliteBindInt64(stmt: *mut c_void, index: i32, value: i64) -> i32; in SqliteBindInt64() function 107 Value::Number(i) => unsafe { SqliteBindInt64(self.handle as _, index, *i as _) }, in bind_data() 108 Value::Bool(b) => unsafe { SqliteBindInt64(self.handle as _, index, *b as _) }, in bind_data()
|
H A D | sqlite3_wrapper.c | 61 int SqliteBindInt64(void *pStmt, int index, int64_t iValue) in SqliteBindInt64() function
|