I apologize if this is a repeat.
The following code works on Perl v5.8.8, but does not on v5.10.0.
#!/usr/bin/perl
use strict;
sub getListIdx {
my $listref = shift;
my $sval = shift;
for (my $i=0; $i<=$#{@{$listref}}; $i++) {
if ($sval eq...
I am executing the mysql command from within Perl scripts (long story why not using Perl DBI module). What I am finding is that Perl is stripping out the "table border" characters that are normally output by the mysql command when doing a select from a table.
For example, I get this:
ID...
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.