http://qs1969.pair.com?node_id=1231502


in reply to Re^5: mysql update table how to
in thread mysql update table how to

It is PART of another sub routine that only the Admin can access, no user or hacker could even guess or get to were it is, besides no one else came up with an answer? But thanks anyway!

Replies are listed 'Best First'.
Re^7: mysql update table how to
by poj (Abbot) on Mar 20, 2019 at 17:03 UTC

    Why take the risk, it's easy enough to avoid

    my $sql= 'UPDATE EmployerJobs SET Disabled = ? WHERE USERID = ?'; my $dbh = DB::connect (); my $count = $dbh->do($sql,undef,$DISABLED,$userid); $dbh->disconnect (); printf "%d records updated\n",$count;

    also be aware that by not using the ->update_record() method in package DB::TableInfo you could be missing important audit logging or database consistency/integrity checks.


    poj
      Thanks, That's a good Idea!