Jeff Thies wrote:
>
> For example, for a table with this header:
> one|two|three|four|five
>
> INSERT INTO a_table(two) VALUES('two entry')
>
> yields:
> |two entryAnd $sth->fetchrow_arrayref on that row should yield this: [undef,'two entry',undef,undef,undef] (In other words, the "missing" fields are turned into NULLs). Let me know if it doesn't behave like that. -- Jeff
