mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-04-03 06:51:05 +00:00
A minor change
This commit is contained in:
parent
41803cc3ca
commit
37ae860747
@ -36,18 +36,18 @@ impl<'l> Statement<'l> {
|
|||||||
/// The leftmost parameter has the index 1.
|
/// The leftmost parameter has the index 1.
|
||||||
pub fn bind(&mut self, bindings: &[Binding]) -> Result<()> {
|
pub fn bind(&mut self, bindings: &[Binding]) -> Result<()> {
|
||||||
for binding in bindings.iter() {
|
for binding in bindings.iter() {
|
||||||
match *binding {
|
match binding {
|
||||||
Binding::Float(i, value) => unsafe {
|
&Binding::Float(i, value) => unsafe {
|
||||||
debug_assert!(i > 0, "the indexing starts from 1");
|
debug_assert!(i > 0, "the indexing starts from 1");
|
||||||
success!(self.raw.1, ffi::sqlite3_bind_double(self.raw.0, i as c_int,
|
success!(self.raw.1, ffi::sqlite3_bind_double(self.raw.0, i as c_int,
|
||||||
value as c_double));
|
value as c_double));
|
||||||
},
|
},
|
||||||
Binding::Integer(i, value) => unsafe {
|
&Binding::Integer(i, value) => unsafe {
|
||||||
debug_assert!(i > 0, "the indexing starts from 1");
|
debug_assert!(i > 0, "the indexing starts from 1");
|
||||||
success!(self.raw.1, ffi::sqlite3_bind_int64(self.raw.0, i as c_int,
|
success!(self.raw.1, ffi::sqlite3_bind_int64(self.raw.0, i as c_int,
|
||||||
value as ffi::sqlite3_int64));
|
value as ffi::sqlite3_int64));
|
||||||
},
|
},
|
||||||
Binding::Text(i, value) => unsafe {
|
&Binding::Text(i, value) => unsafe {
|
||||||
debug_assert!(i > 0, "the indexing starts from 1");
|
debug_assert!(i > 0, "the indexing starts from 1");
|
||||||
success!(self.raw.1, ffi::sqlite3_bind_text(self.raw.0, i as c_int,
|
success!(self.raw.1, ffi::sqlite3_bind_text(self.raw.0, i as c_int,
|
||||||
str_to_c_str!(value), -1, None));
|
str_to_c_str!(value), -1, None));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user