データベースに接続するためのパッケージを作成しました。コードは以下のとおりです。
#!/usr/bin/perl
#Class
package DB_CONNECT;
#Constructor
sub new {
my ($class)=@_;
my $self={};
$self->{_odbc}="dbi:ODBC:SQLSERVER";
$self->{_username}="xxx";
$self->{_password}="xxx";
$self->{_dbh}=my $dbh;
bless $self, $class;
return $self;
}
###Method to open the database connection
sub db_connect
{
use DBI;
my ($self)=@_;
$self->{_dbh}=DBI->connect($self->{_odbc},$self->{_username},$self->{_password},{PrintError => 1}) || die "Database connection not made: $DBI::errstr";
return 1;
}
1;
データベースからデータを取得する Perl コードのセットです。
#!/usr/bin/perl
#use strict;
use Data::Dumper;
use Asterisk::AGI;
use DB_CONNECT;
#require("/root/DB_CONNECT.pm");
my $agi = new Asterisk::AGI;
my $db = DB_CONNECT->new();
my $sql = "EXEC usp_sms_ticket '".$status_data."'";
my $sth = $db->prepare($sql);
$sth->execute();
$return = $sth->fetchrow();
$agi->set_variable('result',$return);
print Dumper($return);
$sth->finish;
$db->disconnect;
Perl プログラムを実行するたびに、次のエラーが発生します。
パッケージ「DB_CONNECT」を介してオブジェクトメソッド「prepare」が見つかりません