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

55 lines
1.5 KiB
Perl
Raw Normal View History

2009-12-15 17:31:13 +01:00
package Lemonldap::NG::Common::Conf::RDBI;
use strict;
use Lemonldap::NG::Common::Conf::Serializer;
use Lemonldap::NG::Common::Conf::_DBI;
2009-12-15 17:31:13 +01:00
2010-11-20 16:05:40 +01:00
our $VERSION = '1.0.0';
our @ISA = qw(Lemonldap::NG::Common::Conf::_DBI);
2009-12-15 17:31:13 +01:00
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 "
2011-01-25 17:41:31 +01:00
. $self->{dbiTable}
. " (cfgNum,field,value) values (?,?,?)" );
unless ( $tmp and $tmp->execute( $fields->{cfgNum}, $k, $v ) ) {
2009-12-15 17:31:13 +01:00
$self->logError;
$errors++;
last;
}
}
eval { $errors ? $self->_dbh->do("ROLLBACK") : $self->_dbh->do("COMMIT"); };
2009-12-15 17:31:13 +01:00
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 "
2009-12-15 17:31:13 +01:00
. $self->{dbiTable}
. " WHERE cfgNum=$cfgNum" );
$sth->execute();
my ( $res, @row );
while ( @row = $sth->fetchrow_array ) {
$res->{ $row[1] } = $row[2];
}
2010-03-01 21:32:28 +01:00
unless ($res) {
2009-12-15 17:31:13 +01:00
$Lemonldap::NG::Common::Conf::msg .= "No configuration $cfgNum found";
return 0;
}
$res->{cfgNum} = $cfgNum;
return $self->unserialize($res);
}
1;
__END__