in reply to INSERT NOT EXECUTING

To reiterate what you've already been told, but more specifically, change this:
my $connect = DBI->connect($dsn, $user, $pw)or die "NOT WORKING";
To this:
my $connect = DBI->connect($dsn, $user, $pw, {RaiseError => 1});

Replies are listed 'Best First'.
Re^2: INSERT NOT EXECUTING
by cparrett (Initiate) on Aug 05, 2013 at 20:28 UTC

    I tried all the comments, all I get from the output is "Died at Monk.pl line 67." Line 67 is the execute line for the insert statement. Is this an issue with the MySQL Table???

      Is this an issue with the MySQL Table???
      Don't know. But why do you have strict and warnings commented out?

        OK, with the strict and warning, I have now: Died at Monk.pl line 67 (#2) (F) You passed die() an empty string (the equivalent of die "") or you called it with no args and $@ was empty. Uncaught exception from user code: Died at Monk.pl line 67.