summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/MetaDB/DBI.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-08-02 22:41:16 +0200
committerOliver Tappe2007-08-02 22:41:16 +0200
commit27b19f7804d23c2ef4c2fd38e0134cdfadae0987 (patch)
tree772b8da3326dd0dc842311a6fbd830e3d60bcb10 /config-db/OpenSLX/MetaDB/DBI.pm
parentHook for #154 problem ... (just a reminder) (diff)
downloadcore-27b19f7804d23c2ef4c2fd38e0134cdfadae0987.tar.gz
core-27b19f7804d23c2ef4c2fd38e0134cdfadae0987.tar.xz
core-27b19f7804d23c2ef4c2fd38e0134cdfadae0987.zip
* added POD to ConfigDB, and did some fixes along the way
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1306 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/OpenSLX/MetaDB/DBI.pm')
-rw-r--r--config-db/OpenSLX/MetaDB/DBI.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/config-db/OpenSLX/MetaDB/DBI.pm b/config-db/OpenSLX/MetaDB/DBI.pm
index 27d493f6..b80f3c0a 100644
--- a/config-db/OpenSLX/MetaDB/DBI.pm
+++ b/config-db/OpenSLX/MetaDB/DBI.pm
@@ -45,21 +45,21 @@ sub quote
return $self->{'dbh'}->quote(@_);
}
-sub start_transaction
+sub startTransaction
{ # default implementation passes on the request to the DBI
my $self = shift;
return $self->{'dbh'}->begin_work();
}
-sub commit_transaction
+sub commitTransaction
{ # default implementation passes on the request to the DBI
my $self = shift;
return $self->{'dbh'}->commit();
}
-sub rollback_transaction
+sub rollbackTransaction
{ # default implementation passes on the request to the DBI
my $self = shift;