rdecanio has asked for the wisdom of the Perl Monks concerning the following question:
I am getting a "DBD::ODBC::st fetchall_arrayref failed: [Microsoft][:ODBC Microsoft Access Driver]String data, right truncated on column number 5" The fifth column being the "large column". I am assuming a perl array doesn't like elements with that much data in it. I can't reduce the amount of data, does anyone have any ideas?############################# $db_array_ref = $WinSelSth->fetchall_arrayref() ; for my $row (@$db_array_ref) { my ($req, $lob, $cycle, $status, $comments) = @$row ; #############################
2003-04-24 edit ybiC: <code> tags, HTML encode square brackets
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Retrieving data w/ dbi with a large column
by perlplexer (Hermit) on Apr 24, 2003 at 02:19 UTC | |
|
Re: Retrieving data w/ dbi with a large column
by Juerd (Abbot) on Apr 24, 2003 at 12:51 UTC | |
|
Re: Retrieving data w/ dbi with a large column
by Abigail-II (Bishop) on Apr 24, 2003 at 12:50 UTC | |
|
Re: Retrieving data w/ dbi with a large column
by perltastic (Initiate) on Apr 25, 2003 at 22:50 UTC |