我想使用perl& CGI在数据库中插入数据,但我有以下错误: 未定义的子程序& Db :: connection在C:/wamp/bin/apache/apache2.2.22/cgi-bin/test.pl第13行调用。
test.pl
sub change{
my $Data = {
table =>'student',
action => 'insert',
data => {
Name => 'LL',
Surname => 'GG',
Age => '20'
}
};
return Db::update($Data);
};
sub test {
my $Data = {
table =>'student',
action => 'insert',
data => {
Name => 'LL',
Surname => 'GG',
Age => '20'
},
};
return Db::insert($Data);
};
print test();
只需编辑我现在打印的代码:INSERT INTO student(姓名,姓氏,年龄)VALUES(LL,GG,20)但不会将这些数据插入数据库表中