I'm pushing stored procedures into sybase:dbi from a file.
Apparently I'm bumping up against perl's max string length constraint.
I want to know if there is a way to increase the max string length as (or before?) I build this string. And is there a prefered way to give this extremely long string to dbi other than:
$sth = $dbh->prepare($long_ass_string);
$sth->execute();