NAME
OP::Enum::DBIType
DESCRIPTION
Database type enumeration.
Uses OP::Enum to provide constants which are used to specify database types. The mix-in OP::Persistence class method __dbiType()
should be overridden in a subclass to return one of the constants in this package.
SYNOPSIS
use OP::Enum::DBIType;
sub __dbiType($) {
my $class = shift;
return OP::Enum::DBIType::MySQL;
}
CONSTANTS
OP::Enum::DBIType::MySQL
Specifies MySQL as a DBI type
OP::Enum::DBIType::SQLite
Specifies SQLite as a DBI type
SEE ALSO
This file is part of OP.
REVISION
$Id: //depotit/tools/source/snitchd-0.20/lib/OP/Enum/DBIType.pm#2 $