Searched refs:sql_s (Results 1 – 2 of 2) sorted by relevance
60 let mut sql_s = sql.to_string(); in prepare() localVariable61 sql_s.push('\0'); in prepare()62 let mut stmt = Statement { sql: sql_s, handle: 0, db }; in prepare()
420 let mut sql_s = sql.to_string(); in exec() localVariable421 sql_s.push('\0'); in exec()423 let ret = unsafe { SqliteExec(self.handle as _, sql_s.as_ptr(), &mut msg as _) }; in exec()