Win32::SqlServer::DTS::Task - a Perl base class to access Microsoft SQL Server 2000 DTS tasks
use Win32::SqlServer::DTS::Task; # $task is an already instantied class using Win32::OLE my $custom_task = Win32::SqlServer::DTS::Task->new( $task->CustomTaskID, $task->CustomTask ); # prints the custom task name print $custom_task->get_name, "\n";
Win32::SqlServer::DTS::Task
is an base class to be subclassed: one should not use it directly (although it may work). See SEE ALSO for more information about the classed that uses Win32::SqlServer::DTS::Task
as part of their inheritance.
Nothing.
Creates a new Win32::SqlServer::DTS::Task
object. It should be overrided by subclasses, since it defines only general attributes. Expects a DTS Task
object. Returns a new Win32::SqlServer::DTS::Task
object.
One should not invoke this method directly, unless wants to extended the DTS
API. See Win32::SqlServer::DTS::Package for more information about how to fetch Win32::SqlServer::DTS::Task
objects easialy.
Returns a string with the name of the task.
Returns a string with the description of the task.
Returns a string of type of the task.
Deprecated. This method is not as useful as it may be seen, since the to_string method does a better job reporting everything about the Task.
Not implemented. Some tasks fetch their properties in a different manner. Use this method only in subclasses from Win32::SqlServer::DTS::Task
.
If this method is not override in subclasses it will cause the application to die. Once overrided, it will fetch and return a string with all properties in a nicely manner for printing.
perldoc
.perldoc
to see how to fetch Win32::SqlServer::DTS::Task
objects.perldoc
to see how to instantiate new objects from Win32::SqlServer::DTS::Task
subclasses in a polymorphic way.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.