sqlalchemy.exc.OperationalError
sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: user
[SQL: select * from user]
(Background on this error at: http://sqlalche.me/e/e3q8)
File “/home/www/order/Hello.py”, line 41, in hello
def hello():
from sqlalchemy import text
sql = text('select * from `user`')
result = db.engine.execute( sql )
for row in result:
app.logger.info( row )
return'hello World'