Open cpcloud opened 10 years ago
can u show what title is
done
Thanks for your work on this. I realize querying strings isn't the most prominent use case.
I'll mention again that grabbing a variable from locals is something one almost never sees in Python (although it does occur in R a bit -- which might be something of a warning).
Here's a parallel case in the standard library in the sqlite API:
# Do this instead
t = ('RHAT',)
c.execute('SELECT * FROM stocks WHERE symbol=?', t)
print(c.fetchone())
example from #6901:
test.csv
should querying work the same as
query
/eval
forselect
queries?or
the latter currently doesn't work