Answers for "sqlite3 operationalerror no such column"

2

sqlite operational error no such column

'''
If you add a column to a table after you have initialized the model, you have to delete the database and initialize the model again.
'''
Posted by: Guest on October-21-2020
0

select sqlite3.OperationalError: no such column:

cursor.execute("SELECT * FROM students WHERE ID=? AND name=? AND age=?", (123, "Steve", 17))
Posted by: Guest on June-30-2021

Code answers related to "sqlite3 operationalerror no such column"

Python Answers by Framework

Browse Popular Code Answers by Language