| Win32-SqlServer-DTS documentation | Contained in the Win32-SqlServer-DTS distribution. |
Win32::SqlServer::DTS::Assignment::Destination::Connection - a subclass of Win32::SqlServer::DTS::Assignment::Destination for connections
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 $iterator = $dyn_props->get_assignments();
while ( my $assignment = $iterator->() ) {
my $dest = $assignment->get_destination();
if ( $dest->changes('Connection') ) {
print $dest->get_string(), "\n";
}
}
}
Win32::SqlServer::DTS::Assignment::Destination::Connection 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:
'Connections';name of the connection;'Properties';name of the property.
Nothing.
initialize method sets the destination attribute as a DTS Package connection property. It also sets the
attribute conn_name with the connection name.
perldoc.perldoc.Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>
Copyright (C) 2007 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.
| Win32-SqlServer-DTS documentation | Contained in the Win32-SqlServer-DTS distribution. |
package Win32::SqlServer::DTS::Assignment::Destination::Connection;
use 5.008008; use strict; use warnings; use Carp qw(confess); use base qw(Win32::SqlServer::DTS::Assignment::Destination); our $VERSION = '0.01';
__PACKAGE__->follow_best_practice; __PACKAGE__->mk_ro_accessors(qw(conn_name));
sub initialize { my $self = shift; my @values = split( /;/, $self->get_string() ); $self->{destination} = $values[3]; $self->{conn_name} = $values[1]; confess "'destination' attribute cannot be undefined\n" unless ( defined( $self->{destination} ) ); confess "'conn_name' attribute cannot be undefined\n" unless ( defined( $self->{conn_name} ) ); } 1; __END__