Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Connettiti a SQL Server 2005 da Perl ed esegui SELECT

Dovrai usare DBI e probabilmente è meglio usare il provider DBD::ODBC da (CPAN ). Se non conosci DBI, allora devi leggere a riguardo. C'è un libro (Programmazione del DBI Perl ) che è vecchio ma ancora valido.

Quindi qualcosa come il seguente:

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;