lemonldap-ng/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RDBI.pm

55 lines
1.5 KiB
Perl

package Lemonldap::NG::Common::Conf::RDBI;
use strict;
use Lemonldap::NG::Common::Conf::Serializer;
use Lemonldap::NG::Common::Conf::_DBI;
our $VERSION = '1.0.0';
our @ISA = qw(Lemonldap::NG::Common::Conf::_DBI);
sub store {
my ( $self, $fields ) = @_;
$self->{noQuotes} = 1;
$fields = $self->serialize($fields);
my $errors = 0;
while ( my ( $k, $v ) = each %$fields ) {
my $tmp =
$self->_dbh->prepare( "insert into "
. $self->{dbiTable}
. " (cfgNum,field,value) values (?,?,?)" );
unless ( $tmp and $tmp->execute( $fields->{cfgNum}, $k, $v ) ) {
$self->logError;
$errors++;
last;
}
}
eval { $errors ? $self->_dbh->do("ROLLBACK") : $self->_dbh->do("COMMIT"); };
unless ( $self->unlock ) {
$self->logError;
}
return $errors ? UNKNOWN_ERROR : $fields->{cfgNum};
}
sub load {
my ( $self, $cfgNum, $fields ) = @_;
$fields = $fields ? join( ",", @$fields ) : '*';
my $sth =
$self->_dbh->prepare( "SELECT cfgNum,field,value from "
. $self->{dbiTable}
. " WHERE cfgNum=$cfgNum" );
$sth->execute();
my ( $res, @row );
while ( @row = $sth->fetchrow_array ) {
$res->{ $row[1] } = $row[2];
}
unless ($res) {
$Lemonldap::NG::Common::Conf::msg .= "No configuration $cfgNum found";
return 0;
}
$res->{cfgNum} = $cfgNum;
return $self->unserialize($res);
}
1;
__END__