2ge has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use DBI; my $dsn = 'DBI:ODBC:MSSQL'; my $user = 'user'; my $auth = 'pass'; my $dbh = DBI->connect($dsn, $user, $auth, { RaiseError => 1, AutoComm +it => 1} my $sth = $dbh->prepare_cached("execute stored_procedure");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: MSSQL, SP, Columns and datatypes
by Arunbear (Prior) on Nov 08, 2004 at 14:15 UTC | |
by 2ge (Scribe) on Nov 08, 2004 at 15:17 UTC |