+1 for SQLite if database is not shared across multiple users. I do most of my dev with sqlalchemy's sqlite backend and final testing with PostgreSQL backend.
Andres > On Tuesday, November 23, 2010 12:17:26 pm [email protected] wrote: > > I'm starting down the looooong path of switching from VFP to > > Python/Dabo and need guidance for selecting which SQL database to use. > > I downloaded and installed PostgreSQL, which I like, but it has a > > too large a footprint for my requirements. So, what would be > > recommended that meets the following requirements: > > (1) No end-user licensing fees. > > (2) Small footprint, preferably totally transparent to the end-user. > > (3) Preferably cross platform, Windows is a must. > > (4) Simple installation, preferably minimal or no end-user inputs. > > > > A short time ago I set aside two weeks to get into Python, wxPython, > > PostgreSQL, and Dabo. I accomplished the first three to the point of > > becoming productive and was very impressed. > > > > Anyway, I'll appreciate any input(s). > > > > Thanks, > > Scott > > If your requirements are very small you could use SQLite (which is built-in > Python). I believe Paul uses SQLite in a commercial product he sells. But > if > you are thinking multi-user then currently you have Postgres, MySQL, > FireBird, > and maybe MsSQL (not sure if it's currently working) to choose from. > > My 0.02 go with Postgres! > > Johnf > _______________________________________________ > Post Messages to: [email protected] > Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users > Searchable Archives: http://leafe.com/archives/search/dabo-users > This message: > http://leafe.com/archives/byMID/[email protected] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
