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
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
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;
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):
>
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