Q: Django는 어떤 종류의 데이터베이스를 사용합니까? Flask와의 차이는 무엇입니까?
A:
What database does Django use?
The three most widely used Database Management Systems for Django are SQLite, MySQL, and PostgreSQL. The Django community and official Django documentation state PostgreSQL as the preferred database for Django Web Apps.
https://www.nickmccullum.com/best-database-django-web-apps/
What is the default database for Django?
SQLite
By default, the configuration uses SQLite. If you're new to databases, or you're just interested in trying Django, this is the easiest choice. SQLite is included in Python, so you won't need to install anything else to support your database.
Q: Django에서 제공하는 sqlite는 어떤 장단점이 있습니까?
https://www.javatpoint.com/sqlite-advantages-and-disadvantages
'TIL' 카테고리의 다른 글
TIL 080923 (0) | 2023.08.09 |
---|---|
TIL 080823 (0) | 2023.08.08 |
TIL 080423 (0) | 2023.08.04 |
TIL 080323 (0) | 2023.08.03 |
TIL 080223 (0) | 2023.08.02 |