Help for this page

Select Code to Download


  1. or download this
    # This is my means of a sort of 'bind params by column name'.
    sub bind_result_columns
    ...
        }
        return $bound_fields;
    }
    
  2. or download this
    my $QUERY = "select READ_COMMUNITY,IP_ADDRESS,DEVICE_GROUP,MANAGED fro
    +m SNMP_NODES";
    
    ...
        # Do stuff with the data now...
        print Dumper $bound_fields;   # DEBUG
    }