summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/MetaDB/SQLite.pm
diff options
context:
space:
mode:
Diffstat (limited to 'config-db/OpenSLX/MetaDB/SQLite.pm')
-rw-r--r--config-db/OpenSLX/MetaDB/SQLite.pm10
1 files changed, 3 insertions, 7 deletions
diff --git a/config-db/OpenSLX/MetaDB/SQLite.pm b/config-db/OpenSLX/MetaDB/SQLite.pm
index 673ae1c0..147b2061 100644
--- a/config-db/OpenSLX/MetaDB/SQLite.pm
+++ b/config-db/OpenSLX/MetaDB/SQLite.pm
@@ -13,8 +13,9 @@
# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::SQLite;
+use strict;
use vars qw($VERSION);
-$VERSION = 1; # API-version
+$VERSION = 1.01; # API-version . implementation-version
use base qw(OpenSLX::MetaDB::DBI);
################################################################################
@@ -25,12 +26,7 @@ use strict;
use Carp;
use DBD::SQLite;
use OpenSLX::Basics;
-
-my $superVersion = $OpenSLX::MetaDB::DBI::VERSION;
-if ($superVersion < $VERSION) {
- confess _tr('Unable to load module <%s> (Version <%s> required, but <%s> found)',
- 'OpenSLX::MetaDB::DBI', $VERSION, $superVersion);
-}
+use OpenSLX::MetaDB::DBI 1;
################################################################################
### implementation