select=input("select: ")
for row in data.execute('select ? from stocks where date like "2015-11-05" ',(select)):
print(row)
This is is all I'm trying to do right now but I'm getting this error and can't find a solution
sqlite3.ProgrammingError: Incorrect number of bindings supplied.
The current statement uses 1, and there are 5 supplied.
Is there a way to do this? I'm assuming the answer will be similar to the title.