DTS-Task version 0.01
=====================

First version released. The API is not complete.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

ENABLING EXTENDED TESTS

Extended tests will connect to a MS SQL Server database to fetch DTS package
information and therefore tests the methods.

Enabling extended test is a good idea: in fact, executing only the simple tests
will not test much thing and mocking DTS objects is not a simple task. If you're going
to extended or modify the DTS API, is a very good idea to enable extended tests.

To enable the extended tests is necessary to:

1 - Save the DTS package sample ("test_all.dts") that comes with the module tarball in the database.
2 - Edit the XML file "test-config.xml". If your server uses trusted method to authenticate 
then the only thing that needs to be edit is the servername. Otherwise, add the 
<user>user</user> and <password>password</password> inside the "credential" tag. Of course, 
do not forget to use valid user and password information. The "test_conf.dtd" should help you a bit if 
you are able to use a XML validator.

DEPENDENCIES

This module requires these other modules to work:

- Carp
- Class::Accessor
- Data::Dumper
- Win32::OLE
- Hash::Util

COPYRIGHT AND LICENCE

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.


