- or download this
sudo apt install gcc make -y
wget -O - https://install.perlbrew.pl | bash
echo "source ~/perl5/perlbrew/etc/bashrc" >> ~/.profile
...
perlbrew install perl-5.33.8
perlbrew switch perl-5.33.8
perlbrew install-cpanm
- or download this
wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-1.2.20.tar.gz
tar xfvz freetds-1.2.20.tar.gz
...
./configure --prefix=/home/username/tdslib
make
make install
- or download this
export SYBASE=/home/username/tdslib
cpanm install DBI
cpanm DBD::Sybase --verbose --force
- or download this
use warnings;
use strict;
...
$dbh->disconnect();
}