DBD-TSM version 0.01
====================

First, excuse me for my bad english. If someone want to help me! You could.

DBD::TSM is a pure perl module. It needs to locate the TSM command below:

   dsmadmc
   
It works with default install directory and file name for AIX, Linux and Windows
system.

But if you set environment variable DSM_DIR and DSM_CONFIG, I do my best
to use it as clever as I could.

Try to set also DSM_LOG not to log in current directory.

To run my test successfully you need to:
- Have a TSM server started
- A TSM Client full operationnal. i.e.:
  * TSM Binary installed (dsmadmc is the much important for me)
  * dsm.sys or/and dsm.opt set to work with your tsm server.
    o Check it before with a manual test with:
      dsmc query session command
    o Check it before with a manual test with:
      dsmadmc -id=<user> -pa=<password> -se=<Your Server Name stanza> query status
- Use standard DBI environment variable (exported):
   DBI_DSN=dbi:TSM:<your server name>
   DBI_USER=<your tsm user>
   DBI_PASS=<your tsm password>
   Instance (under UNIX for sh like shell):

DBI_DSN=dbi:TSM:MYSERVER
DBI_USER=admin
DBI_PASSWORD=admin

export DBI_DSN
export DBI_USER
export DBI_PASSWORD

If you achieve all these steps, I think all will working...

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  DBI
  
  TSM command (dsmadmc, dsm.sys, ...)

COPYRIGHT AND LICENCE

Copyright (C) 2005 by Laurent Bendavid

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.3 or,
at your option, any later version of Perl 5 you may have available.


