3 odpowiedzi
+ 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 ^^
+ 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.
+ 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.