[DB-SIG] Re: What database should I use

Gerhard Häring haering_postgresql@gmx.de
Fri, 6 Sep 2002 01:11:34 +0200


* A <printers@sendme.cz> [2002-09-05 15:20 +0200]:
> Hello,
> I am going to program a small application (in Python and wxPython) which consists about 
> 2000 - 3000 records . Can you please recommend which database is the best for that. I 
> use Windows.
> Maybe MS Access  or FoxPro or MySQL or better?
> I want to keep the program as small as possible.

PySQLite. It uses an embedded SQL engine (SQLite), which means you don't
have to set up a separate server process. It only weights a hundred KB
or so and has good SQL support (a lot better than MySQL, for example).

http://pysqlite.sf.net/

-- Gerhard