gpt4 book ai didi

mysql - Perl MySQL 问题

转载 作者:行者123 更新时间:2023-11-29 04:29:03 27 4
gpt4 key购买 nike

我是一个完全的 Perl 菜鸟,我是一个 PHP 程序员,我正在努力学习 Perl,目前 using Tizag's tutorial .
我在位于 c:\xampp -
的 Windows Xampp Install 上运行它我有这段代码,它给我一个错误。

use strict; use warnings;
use CGI::Simple;
use DBI;

$host = "localhost";
$database = "store";
$tablename = "inventory";
$user = "root";
$pw = "";

$connect = Mysql->connect($host, $database, $user, $pw);

@databases = $connect->listdbs;
foreach $database (@databases) {
print "$database<br />";
}

错误:

Can't locate CGI/Simple.pm in @INC (@INC contains: C:/xampp/perl/site/lib/ C:/xampp/perl/lib C:/xampp/perl/site/lib C:/xampp/apache) at C:/xampp/htdocs/testing/learn_perl/index.pl line 5. BEGIN failed--compilation aborted at C:/xampp/htdocs/testing/learn_perl/index.pl line 5. ,

最佳答案

您向我们展示的任何代码都不需要 CGI::Simple。如果您打算以后将您的程序变成 CGI 应用程序,那么我建议您使用 CGI 而不是 CGI::Simple。 CGI 最明显的优点之一是它包含在标准 Perl 安装中,因此您无需自己安装。

但这只是问题的开始。看起来你找到了一个糟糕的教程。使用从 learn.perl.org 链接的资源可能会做得更好.

关于mysql - Perl MySQL 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5927004/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com