Help for this page

Select Code to Download


  1. or download this
        $VAR{q} = qq~SELECT * FROM table~;
        $VAR{x} = $DBCONN->query($VAR{q});
        $VAR{n} = $VAR{x}->numrows;
    
  2. or download this
        $VAR{q} = qq~SELECT COUNT(*) FROM table~;
        $VAR{x} = $DBCONN->query($VAR{q});
        $VAR{n} = $VAR{x}->numrows;
    
  3. or download this
    http://perlguru.com/gforum.cgi?post=44983;guest=
    
  4. or download this
    ==========================================
    Update
    ==========================================