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/tuple
is this currently possible ?