denodrivers/sqlite and deno-sqlit behave different with multiple `?` args
I wanted to understand why these return different results
If I replace the
denodrivers
prepare statement to use named args I get correctly two values so unsure which method is needed to be called to get both to behave consistently1 Reply
From the above its clear that the
?
is overidden and therefore only one of them get's returned.
I am not sure if this is something that could be tackled or if it's even necessary as it isn't exactly a meanigful statement
Solved, found there is a method called values
that returns the results in array list form