簡體   English   中英

Perl DBI SQL SERVER連接問題

[英]Perl DBI SQL SERVER CONNECTIVITY ISSUES

對Perl來說很新。 我在嘗試讓DBI與SQL Server 2008 DB進行通信時遇到問題。

當我嘗試使用ODBC或直接連接到SQL Servereveb時,我收到以下錯誤。

我是Perl的新手,有人可以幫助...謝謝

install_driver(MSSQL)失敗:無法在C:/Perl/lib/DBD/MSSQL.pm第79行通過軟件包“Class :: DBI :: MSSQL”找到對象方法“set_sql”。編譯失敗於require(eval 19) )C:/Perl/site/lib/DBI.pm:744第3行。

use strict; 
use warnings;
use diagnostics;
use Class::DBI::Loader;   

use DBI;

use File::Glob ':glob';


my $DBUserName                     = "*******";
my $DBPassword                     = "*******";
my $DBName                         = "dbi:MSSQL:uat-dbserver1";

my $dbh                         = "";
my $sqlStatement                 = "";
my $sqlCmd                         = "";

my @EasySetTableNames            = ();



$dbh = DBI->connect( $DBName, $DBUserName, $DBPassword,
    { PrintError => 0, AutoCommit => 0})
        || die "Database connection creation failed: $DBI::errstr\n";

$sqlStatement = "SELECT * from tableA ";
$sqlCmd = $dbh->prepare($sqlStatement);
$sqlCmd->execute();
@EasySetTableNames = @{$dbh->selectcol_arrayref($sqlStatement)};
print "hi";

並通過ODBC

#!/usr/bin/perl -w
use strict;

use DBI;

# Replace datasource_name with the name of your data source.
# Replace database_username and database_password
# with the SQL Server database username and password.
my $data_source = "dbi:MSSQL:test";
my $user = "test";
my $password = "test";

# Connect to the data source and get a handle for that connection.
my $dbh = DBI->connect($data_source, $user, $password)
    or die "Can't connect to $data_source: $DBI::errstr";

# This query generates a result set with one record in it.
my $sql = "SELECT 1 AS test_col";

# Prepare the statement.
my $sth = $dbh->prepare($sql)
    or die "Can't prepare statement: $DBI::errstr";

# Execute the statement.
$sth->execute();

# Print the column name.
print "$sth->{NAME}->[0]\n";

# Fetch and display the result set value.
while ( my @row = $sth->fetchrow_array ) {
   print "@row\n";
}

# Disconnect the database from the database handle.
$dbh->disconnect;

您可以提供的任何幫助將非常感激。

我通常在dbi中使用ODBC驅動程序,這就是我通常會打sql server的方法(2008 r2)

    #!/export/appl/pkgs/perl/5.8.4-fiq/bin/perl
    #!/usr/bin/perl
    #!/bin/sh

    use strict;
    use DBI;
    use Time::localtime;
    use Data::Dumper;

    my $dsn = 'DBI:ODBC:Driver={SQL Server}';
    my $host = 'xxx\yyy';
    my $database = 'testing';
    my $user = 'user';
    my $auth = 'password';


    my $dbh = DBI->connect("$dsn;Server=$host;Database=$database", $user, $auth) or die "Database connection not made: $DBI::errstr";

    my $sql = "EXECUTE database.schema.sproc";
    my $stmt = $dbh->prepare($sql);
    $stmt->execute();   
    $stmt->finish();
    $dbh->disconnect;

我能夠使用OLE32連接到SQL Server,這里是代碼示例... “光標類型已更改”錯誤Perl OLE32 MSSQL dateadd函數結果

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM