in reply to If no results come back ...

Hello Andrew,

Looks like you might be new to the monastary. I'd like to suggest that in the future, you are more likely to get answers to your questions if you can come up with a minimal case that describes what you are trying to do rather than just pasting all of your code into a window. Monks are lazy busy people, and really don't like to have to read through a lot of extraneous fluff in order to sift through and find the actual question. In general, the shorter and more consise your question, the more likely you are to get a helpful answer.

Now, on to your question, if I understand your question, you want to avoid the first print statement if $id doesn't exist? If that is the case, there are a ton of ways to do that. First, you could just make your if block bigger:

if ( $id ) { print qq~ ... }

Or you could get sneaky and use perl's short-circut evaluations..

$id and print qq~ ...

Or you could add another 'if' statement:

print qq~ html stuff here... ~ if ( $id );

Replies are listed 'Best First'.
Re: Re: If no results come back ...
by andrew (Acolyte) on Jul 21, 2002 at 03:17 UTC
    no if there are no results from the SQL code.
    $sth = $dbh->prepare("SELECT id,name FROM category WHERE parent = ' +$id'"); $sth->execute or die $dbh->errstr;

      Ahh.. you have stumbled upon the other reason for being concise, so people know what you are asking for. :)

      If you want to know if there are any results, check the return value from $sth->execute. But you have to be careful since 0 results returns "0E0" (zero, but true). That trick is what prevents the 'or die' part of your command from running if no results return. Basically, you just need to know to evaluate the return value from the execute command in a numeric context. Also, if you need to know the result of that query to decide if you should print something, then obviously you need to run the query before you try to print it..

      my $rows; if($id) { $sth = $dbh->prepare("SELECT id,name FROM category WHERE parent = ' +$id'"); $sth->execute or die $dbh->errstr; } else { $sth = $dbh->prepare("SELECT id,name FROM category WHERE parent = ' +0'"); $rows = $sth->execute or die $dbh->errstr; } if ( $rows + 0 ) { print qq~ ... ~; }