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 entry

And $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

Reply via email to