Help for this page

Select Code to Download


  1. or download this
    use strict;
    use DBI;
    my $db = DBI->connect('DBI:ODBC:myDSN')
        or die "Could not connect to database: " . DBI->errstr;
    
  2. or download this
    use strict;
    use DBI;
    my $db = DBI->connect('DBI:ODBC:myDSN','user','passwd')
        or die "Could not connect to database: " . DBI->errstr;