http://qs321.pair.com?node_id=726107


in reply to Re^3: selectrow_array() confusion
in thread selectrow_array() confusion

"SELECT min(id),max(id) from images where gallery_path like '/px6%' +") || die $d->errstr;

should be

"SELECT min(id),max(id) from images where gallery_path like '/px6%' +") or die $d->errstr;

You are forcing the selectrow_array call to be in scalar context by use of the "c-style logical or" || (see the precedence chart in perlop). You need to use or. Quoth the docs:

If called in a scalar context for a statement handle that has more than one column, it is undefined whether the driver will return the value of the first column or the last. So don't do that. Also, in a scalar context, an "undef" is returned if there are no more rows or if an error occurred. That "undef" can't be distinguished from an "undef" returned because the first field value was NULL. For these reasons you should exercise some caution if you use "selectrow_array" in a scalar context, or just don't do that.

The meme for spewing errors with a postfix or die uses "or" for a reason. It binds lower than all other operations, so it will be executed only if the entire statement itself fails (well, almost).

You have this error in the line above as well. I would also change your connect call to use the or meme instead of the || one.

As a learning device for others: this is a reason to include a complete working example of the failing code. Many (if not most) of the responses above were focusing on DBI/DBD, when in reality the problem was internal to perl operator misuse. That was not discovered until a complete code example was posted that exhibited the behavior.

and just so this gets picked up as an example when searching:

--MidLifeXis

Replies are listed 'Best First'.
Re^5: selectrow_array() confusion (or vs ||)
by Cody Pendant (Prior) on Nov 27, 2008 at 23:14 UTC
    Thank you!

    I now have a lot of code to check through...



    Nobody says perl looks like line-noise any more
    kids today don't know what line-noise IS ...