in reply to DBD::AnyData & Array of Arrays

The difference is one level of indirection. In the first case, you have an array containing arrayrefs pointing to arrays containing strings. In the second case, you have an array containing a single element, which is an arrayref pointing to an array containing arrayrefs pointing to arrays containing strings.

If you backwhack your first array, you'll get the same results as using the second array directly.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Replies are listed 'Best First'.
Re: •Re: DBD::AnyData & Array of Arrays
by thegoaltender (Sexton) on Jan 02, 2004 at 15:46 UTC
    Thanks, that did it. Jim