pydrill
pydrill copied to clipboard
Pass SQL parameters to PyDrill queries
Is there any plan to extend drill.query() so that sql parameters can be passed?
In general, this is done with an additional argument in cursor.execute, as
cursor.execute("SELECT ?, ?, ? FROM table", (var1, var2, var3))