[SQLObject] Faster Loading of Data to SQLite3

2011-04-16 Thread Massimo
I'm using SQLite3 and loading datafiles of about 50,000 lines. The script takes a long time to update, probably because it keeps hitting the hard disk with every insert/update command. How can I speed up this process? -- Be

Re: [SQLObject] Faster Loading of Data to SQLite3

2011-04-16 Thread Oleg Broytman
On Sat, Apr 16, 2011 at 05:31:52PM -0400, Massimo wrote: > I'm using SQLite3 and loading datafiles of about 50,000 lines. The script > takes a long time to update, probably because it keeps hitting the hard disk > with every insert/update command. How can I speed up this process? Don't use high

[SQLObject] Strange error (ImportError: cannot import name parse_qsl)

2011-04-16 Thread Pгoмᴇтнᴇυs 0x01
Hi all, I am getting a strange error on my linux development server, in particular, the log is: Traceback (most recent call last): File "/www/python/loader.py", line 145, in loadModule loaded = __import__(sModule); File "/www/web/kusanagi.local/www/lf/index.py", line 4, in import db;

Re: [SQLObject] Strange error (ImportError: cannot import name parse_qsl)

2011-04-16 Thread Sean DiZazzo
Do you have a file called cgi.py in the local directory or somewhere on the module search path? On Sat, Apr 16, 2011 at 3:44 PM, Pгoмᴇтнᴇυs 0x01 wrote: > Hi all, > > I am getting a strange error on my linux development server, in particular, > the log is: > > Traceback (most recent call last): >

Re: [SQLObject] Strange error (ImportError: cannot import name parse_qsl)

2011-04-16 Thread Pгoмᴇтнᴇυs 0x01
Yup! That was exactly the problem; thanks! On Sat, Apr 16, 2011 at 4:55 PM, Sean DiZazzo wrote: > Do you have a file called cgi.py in the local directory or somewhere on the > module search path? > > On Sat, Apr 16, 2011 at 3:44 PM, Pгoмᴇтнᴇυs 0x01 < > prometheus.0...@gmail.com> wrote: > >> Hi al