Python Forum
Should I se SQLite to create a simple High-scores database?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Should I se SQLite to create a simple High-scores database?
#2
Quote:sqlite is mainly for relational databases
Sqlite3 is a relational data base management system (DBMS), it's not like one.

It would be perfectly OK to use Sqlite3, but simpler to arrange your data in memory as a dictionary, and then store as a JSON file.
Or arrange as a data frame an save with pandas.

Using sqlite3 with python is quite simple, see: https://docs.python.org/2/library/sqlite3.html
Reply


Messages In This Thread
RE: Should I se SQLite to create a simple High-scores database? - by Larz60+ - Nov-08-2019, 06:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Create database in python module ? Johnse 5 2,947 Sep-05-2019, 04:14 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020