Answers for "sqlalchemy.exc.OperationalError:"

SQL
0

sqlalchemy.exc.OperationalError:

you must create db with tables before trying to call it.(create database in mysql (create database flask;)first than run flask code)
code to create 
>>> from mysqldb import db
>>> db.create_all()
Posted by: Guest on January-08-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language