I have made this script that connects to a mySQL database and selects the last row of the table supplied as input.
#!/usr/bin/perl
use DBI;
use Mysql;
$host = '10.47.115.91:3306';
$database = 'ebno_logging';
$user = 'Ebnolog';
$password = 'pw';
$querytable = $ARGV[0];
$querystring = "SELECT *...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.