
Win32::SqlServer::DTS::AssigmentFactory - a Perl abstract class to create DynamicPropertiesTaskAssignment objects

use Win32::SqlServer::DTS::Task::DynamicProperty;
use Win32::SqlServer::DTS::AssignmentFactory;
my $assignments = $dyn_props->get_sibling->Assignments;
my @assigments;
if ( defined($assignments) ) {
foreach my $assignment ( in($assignments) ) {
push( @assignments,
Win32::SqlServer::DTS::AssignmentFactory->create($assignment) );
}
return \@assignments;
} else {
warn "This dynamic properties does not have any assignment\r\n";
}

Win32::SqlServer::DTS::AssignmentFactory is a simple abstract actory to create Win32::SqlServer::DTS::Assignment objects. This abstract class should be used only if one wants to extend the DTS API.
None by default.
Expects an DTS Assignment object as a parameter. Returns an Win32::SqlServer::DTS::Assignment object in a polymorphic way, depending on the DTS Assignment type.

perldoc, as well it's subclasses.perldoc.
Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>

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.