¡Qué bien! De hecho yo utilicé el ejemplo para DBD::ADO y funcionó a la primera. No soy muy amante de trabajar con ODBC por la dependencia de configuración en la máquina donde va a correr la aplicación... pero ya listo...
explorer, ahora bien, tengo otra duda. No sé si me puedas ayudar. ¿Cómo hago para saber cuántas columnas tiene una tabla? Es que necesito recorrer los datos por el número de columna y no por el nombre de las mismas. Anexo un ejemplo en donde indico los nombres de los campos, pero imaginemos que puede ser otra tabla con X números de campos...
Espero haberme explicado bien...
Using perl Syntax Highlighting
use DBI;
use HTMLTMPL;
# Create a template object and load the template source.
$templ = new HTMLTMPL;
$templ->src('conexionbd.html');
my $host = 'XX.3XX.XXX.XXX';
my $database = '**********';
my $user = '***********';
my $auth = '*********';
# DBD::ADO
$dsn = "Provider=sqloledb;Trusted Connection=yes;";
$dsn .= "Server=$host;Database=$database";
my $dbh
= DBI->connect( "dbi:ADO:$dsn", $user, $auth,
{ RaiseError => 1, AutoCommit => 1 } )
|| die "Database connection not made: $DBI::errstr";
#Prepare a SQL statement
my $sql = "SELECT id_cgi,cgi FROM cgi ";
my $sth = $dbh->prepare($sql);
#Execute the statement
$sth->execute();
my ( $id_cgi, $cgi );
# Bind the results to the local variables
$sth->bind_columns( undef, \$id_cgi, \$cgi );
#Retrieve values from the result set
while ( $sth->fetch() ) {
print "$id_cgi, $cgi\n";
}
#Close the connection
$templ->output('Content-Type: text/html');
$sth->finish();
Coloreado en 0.003 segundos, usando
GeSHi 1.0.8.4