-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
Description
Greetings,
i'm trying to use a select in statement but don't seem to able to.
let mut cursor = conn
.prepare("SELECT * FROM users WHERE age in (?)"). // <-- carray
.unwrap()
.into_cursor();
cursor.bind(&[[Value::Integer(42),Value::Integer(50)]]).unwrap(); // <-- fails since expectation is Value not array/tupleis this currently possible ?
Reactions are currently unavailable