in reply to
MS SQL (DBD::SyBase) varchar limitation
The documentation
seems to indicate that 255 is all you'll get. Try converting the column to text:
select CAST(my_varchar_column as TEXT) ...
, (or try DBD::ODBC).
Comment on
Re: MS SQL (DBD::SyBase) varchar limitation
Download
Code
Replies are listed 'Best First'.
Re^2: MS SQL (DBD::SyBase) varchar limitation
by
boo
(Scribe)
on Apr 15, 2008 at 20:06 UTC
Didn't work :( I tried DBD::ODBC and didn't work too...
[reply]
Re^3: MS SQL (DBD::SyBase) varchar limitation
by
runrig
(Abbot)
on Apr 15, 2008 at 20:19 UTC
Define "didn't work". Same truncation at 255 characters, or something else?
[reply]
In Section
Seekers of Perl Wisdom