0 votes
in Python Flask by
Is the SQLite database built-in Flask?

1 Answer

0 votes
by

SQLite is in-built with Python. To use the database in Flask, we need not install any additional Flask-Extension. Inside the view, we can import SQLite and write SQL queries for interacting with the database.

However, Flask developers generally make use of Flask-SQLAlchemy, which eliminates the need to write complex SQL queries and is an ORM to interact with the SQLite database.

Related questions

0 votes
asked Dec 23, 2022 in Python Flask by john ganales
0 votes
0 votes
asked Nov 12, 2021 in SQLite by Robin
0 votes
asked Jan 2, 2021 in Python by SakshiSharma
...