in reply to Re: Reviewing Rows from MSSQL SELECT statement
in thread Reviewing Rows from MSSQL SELECT statement

Grygonos,
Do I have to specify use DBD::ODBC after the use DBI
statement ?
After reading various help pages on DBI/DBD, I thought
that the DBI module loaded the appropriate DBD part on
connect.
Thanks
  • Comment on Re^2: Reviewing Rows from MSSQL SELECT statement

Replies are listed 'Best First'.
Re^3: Reviewing Rows from MSSQL SELECT statement
by Grygonos (Chaplain) on Jun 09, 2005 at 12:43 UTC
    No you don't.
    use DBI; my $dbh = DBI->connect('DBI:ODBC:driver=SQL Server;database=mydb;serve +r=myserver;app=myapp',$username,$password);