程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SyBase數據庫 >> SyBase教程 >> perl如何連接SQL Server數據庫

perl如何連接SQL Server數據庫

編輯:SyBase教程

perl如何連接SQL Server數據庫


本文將提供一些perl連接Microsoft SQL Server數據庫的實例。perl腳本運行在Windows和Linux平台。

Windows平台

如果在Windows平台下運行perl腳本,建議使用依賴DBI的兩個模塊包,提供標准的數據庫接口模塊。 DBD::ODBC DBD::ADO

使用DBD::ODBC

如果選用DBD::ODBC,下面的實例代碼將展示如何連接到SQL Server數據庫: 

  1. use DBI;  
  2.   
  3. # DBD::ODBC  
  4.   
  5. my $dsn = 'DBI:ODBC:Driver={SQL Server}';  
  6. my $host = '10.0.0.1,1433';  
  7. my $database = 'my_database';  
  8. my $user = 'sa';  
  9. my $auth = ‘s3cr3t';  
  10.   
  11. # Connect via DBD::ODBC by specifying the DSN dynamically.  
  12. my $dbh = DBI->connect("$dsn;Server=$host;Database=$database",  
  13.  $user,  
  14.  $auth,  
  15.  { RaiseError => 1, AutoCommit => 1}  
  16.  ) || die "Database connection not made: $DBI::errstr";  
  17.   
  18. #Prepare a SQL statement my $sql = "SELECT id, name, phone_number FROM employees ";  
  19. my $sth = $dbh->prepare( $sql );  
  20.   
  21. #Execute the statement  
  22. $sth->execute();  
  23.   
  24. my( $id, $name, $phone_number );  
  25.   
  26. # Bind the results to the local variables  
  27. $sth->bind_columns( undef, \$id, \$name, \$phone_number );  
  28.   
  29. #Retrieve values from the result set  
  30. while( $sth->fetch() ) {  
  31.  print "$id, $name, $phone_number\n";  
  32. }  
  33.   
  34. #Close the connection  
  35. $sth->finish();  
  36. $dbh->disconnect(); 

你還可以使用預先設置的一個系統DSN來連接。要建立一個系統DSN,可以這樣訪問控制面板->管理工具->數據源。 使用系統DSN連接,需要更改連接字符串。如下所示:

  1. # Connect via DBD::ODBC using a System DSN  
  2. my $dbh = DBI->connect("dbi:ODBC:my_system_dsn",  
  3.  $user,  
  4.  $auth,  
  5.  {  
  6.  RaiseError => 1,  
  7.  AutoCommit => 1  
  8.  }  
  9.  ) || die "Database connection not made: $DBI::errstr"; 

使用DBD::ADO

如果選擇DBD::ADO模塊,下面的實例展示如何連接到SQL Server數據庫。

  1. use DBI;  
  2.   
  3. my $host = '10.0.0.1,1433';  
  4. my $database = 'my_database';  
  5. my $user = 'sa';  
  6. my $auth = ‘s3cr3t';  
  7.   
  8. # DBD::ADO  
  9. $dsn = "Provider=sqloledb;Trusted Connection=yes;";  
  10. $dsn .= "Server=$host;Database=$database";  
  11. my $dbh = DBI->connect("dbi:ADO:$dsn",  
  12.  $user,  
  13.  $auth,  
  14.  { RaiseError => 1, AutoCommit => 1}  
  15.  ) || die "Database connection not made: $DBI::errstr";  
  16.   
  17. #Prepare a SQL statement  
  18. my $sql = "SELECT id, name, phone_number FROM employees "; my $sth = $dbh->prepare( $sql );  
  19.   
  20. #Execute the statement  
  21. $sth->execute();  
  22.   
  23. my( $id, $name, $phone_number );  
  24.   
  25. # Bind the results to the local variables  
  26. $sth->bind_columns( undef, \$id, \$name, \$phone_number );  
  27.   
  28. #Retrieve values from the result set  
  29. while( $sth->fetch() ) {  
  30.  print "$id, $name, $phone_number\n";  
  31. }  
  32.   
  33. #Close the connection  
  34. $sth->finish();  
  35. $dbh->disconnect(); 

Linux平台

如果是在Linux平台下運行perl腳本,連接SQL Server數據庫需要使用到DBD::Sybase包。

安裝SQL Server支持庫

Sybase DBD包依賴FreeTDS驅動程序。 FreeTDS下載地址:www.freetds.org 安裝FreeTDS驅動的說明文檔參見:http://www.freetds.org/userguide/config.htm 該驅動沒有使用到ODBC.

配置數據源

修改freetds.conf文件包括SQL Server數據庫信息,如下所示: [SS_MY_DB] host = 10.0.0.1 # or host name port = 1433 tds version = 7.0

安裝Sybase DBD模塊

該模塊文檔參見:http://search.cpan.org/~mewp/DBD-Sybase/Sybase.pm 此外,需要將sybase環境變量應設置為FreeTDS安裝路徑,export SYBASE=/usr/local/freetds

使用Sybase DBI和SQL Server DSN實例

  1. # load the DBI module  
  2. use DBI;  
  3. use DBD::Sybase;  
  4.   
  5. my $database="my_database";  
  6. my $user="sa";  
  7. my $auth="s3cr3t";  
  8.   
  9. BEGIN  
  10. {  
  11.  $ENV{SYBASE} = "/usr/local";  
  12. }  
  13.   
  14. # Connect to the SQL Server Database  
  15. my $dbh = DBI->connect("dbi:Sybase:server=ss_my_db;database=$database",  
  16.  $user,  
  17.  $auth  
  18.  {RaiseError => 1, AutoCommit => 1}  
  19.  ) || die "Database connection not made: $DBI::errstr";  
  20.   
  21. #Prepare a SQL statement  
  22. my $sql = "SELECT id, name, phone_number FROM employees";  
  23. my $sth = $dbh->prepare( $sql );  
  24.   
  25. #Execute the statement  
  26. $sth->execute();  
  27.   
  28. my( $id, $name, $phone_number );  
  29.   
  30. # Bind the results to the local variables  
  31. $sth->bind_columns( undef, \$id, \$name, \$phone_number );  
  32.   
  33. #Retrieve values from the result set  
  34. while( $sth->fetch() ) {  print "$name, $title, $phone\n";  
  35. }  
  36.   
  37. #Close the connection  
  38. $sth->finish();  
  39. undef $sth; # This fixes a segfault bug with certain versions of DBD::Sybase  
  40. $dbh->disconnect(); 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved