home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / dbish < prev    next >
Encoding:
Text File  |  2003-11-29  |  422 b   |  29 lines

  1. #!perl -w
  2.  
  3. use strict;
  4.  
  5. use DBI::Shell;
  6. my $sh = DBI::Shell->new(@ARGV)->run;
  7. exit(0);
  8.  
  9. __END__
  10.  
  11. =head1 NAME
  12.  
  13. dbish    - Interactive command shell for the Perl DBI
  14.  
  15. =head1 SYNOPSIS
  16.  
  17.   dbish <options> dsn [user [password]]
  18.  
  19. =head1 DESCRIPTION
  20.  
  21. This tool is a command wrapper for the DBI::Shell perl module.
  22. See L<DBI::Shell(3)> for full details.
  23.  
  24. =head1 SEE ALSO
  25.  
  26. L<DBI::Shell(3)>, L<DBI(3)>
  27.  
  28. =cut
  29.