Anda perlu menggunakan DBI dan Anda mungkin sebaiknya menggunakan penyedia DBD::ODBC dari (CPAN ). Jika Anda tidak tahu tentang DBI, maka Anda perlu membaca tentang itu. Ada sebuah buku (Memrogram DBI Perl ) yang sudah tua tapi masih berlaku.
Kemudian sesuatu seperti berikut:
use strict;
use warnings;
use DBI;
# Insert your DSN's name here.
my $dsn = 'DSN NAME HERE'
# Change username and password to something more meaningful
my $dbh = DBI->connect("DBI:ODBC:$dsn", 'username', 'password')
# Prepare your sql statement (perldoc DBI for much more info).
my $sth = $dbh->prepare('select id, name from mytable');
# Execute the statement.
if ($sth->execute)
{
# This will keep returning until you run out of rows.
while (my $row = $sth->fetchrow_hashref)
{
print "ID = $row->{id}, Name = $row->{name}\n";
}
}
# Done. Close the connection.
$dbh->disconnect;