Saved Bookmarks
| 1. |
What Is The Requirement To Create The Database In Flask? |
|
Answer» Flask supports database powered APPLICATION (RDBS). Such SYSTEM requires CREATING a schema, which requires PIPING the shema.sql file into a sqlite3 COMMAND. So you need to install sqlite3 command in order to create or initiate the database in Flask. Flask supports database powered application (RDBS). Such system requires creating a schema, which requires piping the shema.sql file into a sqlite3 command. So you need to install sqlite3 command in order to create or initiate the database in Flask. |
|