- 论坛徽章:
- 0
|
有个问题问大家,我在用perl连接mysql数据库的时候,比如我用root用户名登录,在没有设定root密码的时候,以下程序运行中没有
出现任何错误提示,说明连接是成功的。
#!/usr/local/bin/perl
use strict;
use DBI;
my $dbh=DBI->;connect ("DBI:mysql:site","root",""
or die "can not connect to the database $DBI::errstr";
$dbh->;disconnect();
但是我给root加上密码后,不能连接访问了,比如我按手册所提供的命令设密码为1234
shell>; mysql -u root mysql
mysql>; SET PASSWORD FOR 'root@'localhost' = PASSWORD('1234');
然后执行上述语句
my $dbh=DBI->;connect ("DBI:mysql:site","root","1234"
出现以下提示
DBI connect('site','root',...) failed: Client does not support authentication protocol requested by server; consider upgrading MySQL client at F:\My Documents\perltest\dbdesign.pl line 7
can not connect to the database Client does not support authentication protocol requested by server; consider upgrading MySQL client at F:\My Documents\perltest\dbdesign.pl line 7.
好像说是要升级 mysql 的客户端?是怎么一回事啊,我用的是mysql 4.1 alpha 在windows xp 下 activeperl 5.6.1 komodo2.5 |
|