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).

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...
      Define "didn't work". Same truncation at 255 characters, or something else?