in reply to Difference in retrieving values from a varchar2 column and number column from DB

What is your error message? What happens if you remove the two colons between IP and ($row_ip->{IP}, '255.255.255.255')? What is the name of your package?

Replies are listed 'Best First'.
Re^2: Difference in retrieving values from a varchar2 column and number column from DB
by Arun Kumar (Novice) on Dec 03, 2013 at 13:37 UTC

    Thanks for the quick reply

    I am not getting any error message. I am running the script through cron job which simply hangs after 5 to 10 seconds and at that time the CPU usage goes to 99.9 for this process.

    I tried removing the double colon in between IP and $row_ip->{IP}, but ended with same issue

      What I would try:

      Run the script from the command line.

      Run a simple script like this:

      my $obj = new MyPackage::NetAddr::IP('10.10.10.10', '255.255.255.255') +;

      with an IP address from your sample.

      Add a print statement to the sub new and re-run the simple script.

        Sorry, I am a newbie for perl. I do not know how to access packages from command line scripts. Could you please give me an idea to do this.