in reply to inserting mysql TEXT-columns

The length of 65536 bytes is a limitation of MySQL and not of Perl or the MySQL driver. You will need to recreate your table, most likely with the SQL type LONGTEXT instead of TEXT if you want to store more than 64k bytes per column.

Replies are listed 'Best First'.
Re^2: inserting mysql TEXT-columns
by Utilitarian (Vicar) on Feb 01, 2011 at 09:31 UTC
    Corion is correct, however you can ALTER TABLE thus avoiding the need to recreate it entirely.

    print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."
Re^2: inserting mysql TEXT-columns
by morgon (Priest) on Jan 31, 2011 at 14:06 UTC
    Solved my problem.

    Thank you