in reply to DBI::ODBC fetch and fetchrow_array

I have never heard of just plain fetch, even if I only need a single cell out of the database I will use fetchrow() and its friends. Works for me all the time. Have you tried switching from DBD::ODBC to DBD::Oracle? I have encountered unexpected behavior with DBD::ODBC in the past.

Just my R$0.02 worth..

#!/home/bbq/bin/perl
# Trust no1!

Replies are listed 'Best First'.
RE: Re: DBI::ODBC fetch and fetchrow_array
by DrManhattan (Chaplain) on Jul 24, 2000 at 20:21 UTC
    *fetchrow_arrayref = \&fetch;

    fetchrow_arrayref() is fetch() in disguise.

    -Matt