NAME
DTS::AssigmentFactory - a Perl abstract class to create DynamicPropertiesTaskAssignment objects
SYNOPSIS
use DTS::Task::DynamicProperty;
use DTS::AssignmentFactory;
my $assignments = $dyn_props->get_sibling->Assignments;
my @assigments;
if ( defined($assignments) ) {
foreach my $assignment ( in($assignments) ) {
push( @assignments,
DTS::AssignmentFactory->create($assignment) );
}
return \@assignments;
} else {
warn "This dynamic properties does not have any assignment\r\n";
}
DESCRIPTION
DTS::AssignmentFactory
is a simple abstract actory to create DTS::Assignment objects. This abstract class should be used only if one wants to extend the DTS
API.
EXPORT
None by default.
METHODS
create
Expects an DTS Assignment object as a parameter. Returns an DTS::Assignment object in a polymorphic way, depending on the DTS Assignment type.
SEE ALSO
DTS::Assignment at
perldoc
, as well it's subclasses.Win32::OLE at
perldoc
.MSDN on Microsoft website and MS SQL Server 2000 Books Online are a reference about using DTS' object hierarchy, but one will need to convert examples written in VBScript to Perl code.
AUTHOR
Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Alceu Rodrigues de Freitas Junior
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.