Help for this page

Select Code to Download


  1. or download this
    my $sth_IP = $dbh->prepare("SELECT IPADDRESS FROM AP WHERE ID=? ")
        or die "Can't prepare SQL statement: $DBI::errstr\n";
    
    $sth_AP_IP->execute($BACKUPID)
        or die "Can't execute SQL statement: $DBI::errstr\n";
    
  2. or download this
    my $sth_Service_Node = $dbh->prepare("SELECT SNID, FRAMEID FROM ORG WH
    +ERE SITE=? AND ID=? AND OFFSET=?")
            or die "Can't prepare SQL statement: $DBI::errstr\n";
    
    $sth_Service_Node->execute($SITEID, $ID, $OFF)
        or die "Can't execute SQL statement: $DBI::errstr\n";