diff options
| author | Oliver Tappe | 2007-05-11 22:35:04 +0200 |
|---|---|---|
| committer | Oliver Tappe | 2007-05-11 22:35:04 +0200 |
| commit | 6c9b8c2a7b04f3147a5013209893176fe423582f (patch) | |
| tree | ee09cbd219d21fc12d6d5fc2f5caded6069dac4f /config-db/OpenSLX/MetaDB/SQLite.pm | |
| parent | * minor cleanup (diff) | |
| download | core-6c9b8c2a7b04f3147a5013209893176fe423582f.tar.gz core-6c9b8c2a7b04f3147a5013209893176fe423582f.tar.xz core-6c9b8c2a7b04f3147a5013209893176fe423582f.zip | |
* cleanup in DB-modules
* DBD::CSV is now required to be 0.22 or higher (to circumvent problems on SuSE-9.3)
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1046 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/OpenSLX/MetaDB/SQLite.pm')
| -rw-r--r-- | config-db/OpenSLX/MetaDB/SQLite.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config-db/OpenSLX/MetaDB/SQLite.pm b/config-db/OpenSLX/MetaDB/SQLite.pm index 4b574639..673ae1c0 100644 --- a/config-db/OpenSLX/MetaDB/SQLite.pm +++ b/config-db/OpenSLX/MetaDB/SQLite.pm @@ -13,9 +13,9 @@ # ----------------------------------------------------------------------------- package OpenSLX::MetaDB::SQLite; -use vars qw(@ISA $VERSION); -@ISA = ('OpenSLX::MetaDB::DBI'); -$VERSION = 1.01; # API-version . implementation-version +use vars qw($VERSION); +$VERSION = 1; # API-version +use base qw(OpenSLX::MetaDB::DBI); ################################################################################ ### This class provides a MetaDB backend for SQLite databases. @@ -23,8 +23,8 @@ $VERSION = 1.01; # API-version . implementation-version ################################################################################ use strict; use Carp; +use DBD::SQLite; use OpenSLX::Basics; -use OpenSLX::MetaDB::DBI $VERSION; my $superVersion = $OpenSLX::MetaDB::DBI::VERSION; if ($superVersion < $VERSION) { |
