At 04:46 PM 08-05-01 -0700, you wrote:
>Hello perl friends. I need to know if perl works with microsoft sql2000. if
>it does, which module do i need to get? thanks

I use DBI.

1. Set up the database you want to use as a 'Data Source' (Administrative 
Tools| Data Sources (ODBC)),
2. Then...
         use DBI;
         my $dbh = DBI->connect('dbi:ODBC:DATA_SOURCE_NAME', 'USER_NAME', 
'PASSWORD');
         ...do your stuff
         $dbh->disconnect;

Joe Yates

Reply via email to