This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Table Options: | |
-------------- | |
ENGINE - A database engine (or storage engine) is the underlying software | |
component that a database management system (DBMS) uses to create, | |
read, update and delete (CRUD) data from a database. | |
InnoDB vs MyISAM | |
---------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Flask SqlAlchemy Debugger (Python 3) | |
------------------------------------ | |
Shows the actual "sql query equivalent" of Flask-SQLAlchemy for debugging purposes | |
and gives you a rough estimation of where in your application query was issued. | |
Only runs when you enable "FLASK_ENV=development", since this will automatically set the | |
"FLASK_DEBUG=1" or explicitly set "FLASK_DEBUG=1". If you are in "FLASK_ENV=testing" (testing mode) | |
or "FLASK_ENV=production" and you want to make it work without enabling the debugging mode, |