Paul McGuire wrote: > "Aahz" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> In article <[EMAIL PROTECTED]>, >> Once Python 2.5 comes out, I recommend using sqlite because it avoids >> the mess that dbm can cause. >> -- >> Aahz ([EMAIL PROTECTED]) <*> >> http://www.pythoncraft.com/ > > and if you don't want to wait for 2.5, you can install pysqlite without too > much trouble - and it is *very* easy to use!
Yeah, just be sure to do this: from pysqlite import dbapi2 as sqlite3 then you're ready for 2.5! :) -- http://mail.python.org/mailman/listinfo/python-list