Win32::SqlServer::DTS::Assignment::Destination::GlobalVar - a subclass of Win32::SqlServer::DTS::Assignment::Destination for global variables


Win32-SqlServer-DTS documentation Contained in the Win32-SqlServer-DTS distribution.

Index


Code Index:

NAME

Top

Win32::SqlServer::DTS::Assignment::Destination::GlobalVar - a subclass of Win32::SqlServer::DTS::Assignment::Destination for global variables

SYNOPSIS

Top

    use warnings;
    use strict;
    use Win32::SqlServer::DTS::Application;
    my $xml = XML::Simple->new();
    my $config = $xml->XMLin('test-config.xml');

    my $app = Win32::SqlServer::DTS::Application->new($config->{credential});

    my $package = $app->get_db_package(
        { id => '', version_id => '', name => $config->{package}, package_password => '' } );

	my $iterator = $package->get_dynamic_props();

    while ( my $dyn_prop = $iterator->() ) {

        my $assign_iterator = $dyn_props->get_assignments();

        while ( my $assignment = $assign_iterator->() ) {

            my $dest = $assignment->get_destination();

		# checking all properties global variables being handled by Dynamic Properties task
            if ( $dest->changes('GlobalVar') ) {

                print $dest->get_string(), "\n";

            }

        }

    }

DESCRIPTION

Top

Win32::SqlServer::DTS::Assignment::Destination::GlobalVar is a subclass of Win32::SqlServer::DTS::Assignment::Destination and represents the global variables as the assignments destinations of a DTS package.

The string returned by the get_string method has this format:

'Global Variables';name of the global variable;'Properties';'Value'.

EXPORT

Nothing.

METHODS

initialize

initialize method sets the destination attribute as the DTS Package global variable name.

SEE ALSO

Top

* Win32::SqlServer::DTS::Assignment at perldoc.
* Win32::SqlServer::DTS::Assignment::Destination 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

Top

Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>

COPYRIGHT AND LICENSE

Top


Win32-SqlServer-DTS documentation Contained in the Win32-SqlServer-DTS distribution.
package Win32::SqlServer::DTS::Assignment::Destination::GlobalVar;

use 5.008008;
use strict;
use warnings;
use Carp qw(confess);
use base qw(Win32::SqlServer::DTS::Assignment::Destination);

our $VERSION = '0.01';

sub initialize {

    my $self = shift;

    $self->{destination} = ( split( /;/, $self->get_string() ) )[1];

    confess "'destination' attribute cannot be undefined\n"
      unless ( defined( $self->{destination} ) );

}

1;
__END__