Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  Installing ActiveState Perl on Windows

2.10.2 在 Windows 上安装 ActiveState Perl

在 Windows 平台上,您需要按照以下步骤安装 MySQL DBD 模块与 ActiveState Perl:

  1. http://www.activestate.com/Products/ActivePerl/ 获取 ActiveState Perl 并安装。

  2. 打开控制台窗口。

  3. 如果必要,请设置 HTTP_proxy 变量。例如,您可能尝试以下设置:

    C:\> set HTTP_proxy=my.proxy.com:3128
  4. 启动 PPM 程序:

    C:\> C:\perl\bin\ppm.pl
  5. 如果您之前没有这样做过,安装 DBI

    ppm> install DBI
  6. 如果这步骤成功,请运行以下命令:

    ppm> install DBD-mysql

这个过程应该与 ActiveState Perl 5.6 或更高版本一起工作。

如果您无法使过程工作,您可以安装 ODBC 驱动程序,而不是通过 ODBC 连接到 MySQL 服务器:

use DBI;
$dbh= DBI->connect("DBI:ODBC:$dsn",$user,$password) ||
  die "Got error $DBI::errstr when connecting to $dsn\n";