본문 바로가기

TIL

TIL 080723

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/

 

The Best Database for Django Web Apps

The Django Web Framework includes support for a number of different databases, including MySQL, MongoDB, and PostgreSQL. This article explains why I believe PostgreSQL is the best database for Django web apps.

www.nickmccullum.com

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.
 
 

Django

The web framework for perfectionists with deadlines.

docs.djangoproject.com

 

https://dingrr.com/blog/post/%EC%96%B8%EC%A0%9C-django%EB%A5%BC-%EC%96%B8%EC%A0%9C-flask%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%B4%EC%95%BC-%ED%95%A0%EA%B9%8C

 

언제 Django를, 언제 Flask를 사용해야 할까? | 블로그 | 딩그르르

언제 Django를, 언제 Flask를 사용해야 할까?

dingrr.com

 

 

Q: Django에서 제공하는 sqlite는 어떤 장단점이 있습니까?

https://www.javatpoint.com/sqlite-advantages-and-disadvantages

 

SQLite Advantages and Disadvantages - javatpoint

SQLite Advanatages and Disadvantages with history, features, advantages, installation, commands, syntax, datatypes, operators, expressions, databases, table, crud operations, clauses, like, glob, limit, and clause, advance sqlite

www.javatpoint.com

https://stackoverflow.com/questions/70985249/is-the-sqlite-database-the-default-django-database-good-enough

 

Is the sqlite database (the default django database) good enough?

I am building this ecommerce app with django, and I was thinking if the default database (sqlite) was fine enough? My django app is going to have around 200 different products, and for payments I w...

stackoverflow.com

 

'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