Database and Python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Database and Python

In practice, what is the best database to use with python?

12th Feb 2018, 4:02 PM
Felipe Braga
Felipe Braga - avatar
3 Answers
+ 4
There's no best database to use with Python: "best" database is related to the usage, not the coding language... You could ask yourself wich is the best ORM ( Object-Relational Mapping -- https://en.m.wikipedia.org/wiki/Object-relational_mapping ) for a specific language, but that's still very related on own tastes and skills, after application field context ^^
13th Feb 2018, 4:07 AM
visph
visph - avatar
+ 1
When I was learning it I had the same problem so I just googled it. But my questions were so specific nobody had an answer to what I was trying to do.
12th Feb 2018, 4:14 PM
Jax
Jax - avatar
+ 1
PostgreSQL and MySQL are two of the most common open source databases for storing Python web applications' data. SQLite is a database that is stored in a single file on disk. SQLite is built into Python but is only built for access by a single connection at a time.
12th Feb 2018, 5:34 PM
📈SmileGoodHope📈
📈SmileGoodHope📈 - avatar