Re: Sqlite3 help

2014-10-20 Thread Chuck
Thanks a bunch Sibylle! That seems like a better approach. -- https://mail.python.org/mailman/listinfo/python-list

Re: Sqlite3 help

2014-10-18 Thread Sibylle Koczian
Am 14.10.2014 15:36, schrieb Chuck: I am building a simple podcast program where I download all the data from a feed with feedparser and store the data in sqlite3. I am spanking new to sqlite and database programming. Should I create the database in the __init__ method of my class, or is tha

Sqlite3 help

2014-10-14 Thread Chuck
I am building a simple podcast program where I download all the data from a feed with feedparser and store the data in sqlite3. I am spanking new to sqlite and database programming. Should I create the database in the __init__ method of my class, or is that a bad idea. I haven't done any desi