[EMAIL PROTECTED] wrote:
> hi,
> I am trying to enter a genome sequence into mysql database. I have created
> a database in mysql as:
>
> create table sequence(seq blob);
>
> the length of my sequence is approx. 170.
>
> this is the error i get whe i run my python script:
>
> Operational
hi,
I am trying to enter a genome sequence into mysql database. I have created
a database in mysql as:
create table sequence(seq blob);
the length of my sequence is approx. 170.
this is the error i get whe i run my python script:
OperationalError: (2006, 'MySQL server has gone away')
i
Hi there,
I am attempting to insert a string into a longtext field (from a CGI
program using the C API) and I keep getting an error message. The string
is not that long actually, 78,069 characters. (Originally this was
mediumtext, but I changed it to longtext as I debugged this problem.)
The comm