Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: DBI forgets last record

by seattlejohn (Deacon)
on Jan 09, 2003 at 07:06 UTC ( [id://225472]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print "NO ITEMS IN CART" unless $sth->fetchrow_array();
  2. or download this
    my @fields = $sth->fetchrow_array();
    if (!@fields) {
      print "NO ITEMS IN CART";
    ...
        @fields = $sth->fetchrow_array();
      }
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://225472]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (7)
As of 2024-03-28 09:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found