Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Database, embedded python
#1
hello. To not be used regarding game, but this forum was the best I could pick.
I think I should use a db to store/search informations from my python app.
Anyone with some knowledge, can suggest such db with some of the below in mind?

prefs:
no costs
embedded in phyton
c/c#.less C++
capacity:single user, windows environment, dependent of pc storage capacity
no communication using internet
speed, not for games
Reply
#2
SQLite is already embedded in Python
Gribouillis likes this post
Reply
#3
(Jul-31-2023, 09:38 PM)PyDan Wrote: SQLite is already embedded in Python

thank you. I used SYBASE in the 80s with embedded c. Ill look into sqllite. Hopefully I remember some regarding defining db. I there any better tool than ms access to define? Perhaps it follows lite, Ill have a look.
Reply
#4
SQLAlchemy makes working with database easy, (most all DBMS's) once the model is built, and that's not difficult to do, It's just basically laying out the schema for each table, and defining datatypes.

I have a tutorial on basic SQLAlchemy here: SqlAlchemy Tutorial - Basic Model, database Creation and Data Load
Reply
#5
(Aug-01-2023, 09:52 AM)Larz60+ Wrote: SQLAlchemy makes working with database easy, (most all DBMS's) once the model is built, and that's not difficult to do, It's just basically laying out the schema for each table, and defining datatypes.

I have a tutorial on basic SQLAlchemy here: SqlAlchemy Tutorial - Basic Model, database Creation and Data Load

Thanks. I ended up with Luna modeler, see attachments. Just some trials.

   

Attached Files

Thumbnail(s)
   
Reply


Forum Jump:

User Panel Messages

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