Hi!
No, there is no same program.
I got this ref:
http://dev.mysql.com/doc/refman/5.0/en/gone-away.html
I will try it.
Thanks:
dd
--
http://mail.python.org/mailman/listinfo/python-list
On Tuesday 01 June 2010 12:46:40 John Nagle wrote:
> durumdara wrote:
> >>> When I tried to start this, I got error:
> >>> _mysql_exceptions.OperationalError: (2006, 'MySQL server has gone
> >>> away')
>
> Are you by any chance trying to do this on a HostGator account?
> HostGator servers run
durumdara wrote:
When I tried to start this, I got error:
_mysql_exceptions.OperationalError: (2006, 'MySQL server has gone away')
Are you by any chance trying to do this on a HostGator account?
HostGator servers run a program which kills long MySQL transactions
by executing MySQL "KILL" tra
Hi!
>
> drop table blobs
> create table blobs (whatever definition it had originally)
It was a test. In PGSQL, PYSQLite that was:
delete from blobs where (file_id in (select file_id from pics where
dir_id=?))
So I need to delete only all blobs that processed.
>
>
>
> > When I tried to start th
Dennis Lee Bieber wrote:
On Wed, 26 May 2010 11:30:41 +0200, Durumdara
declaimed the following in gmane.comp.python.general:
cursor.execute('delete from blobs;')
Since that statement will delete EVERY record from the table
"blobs", I believe it is common practice to replace it with