can i connect with mysql and mssql in one perl program
i have predifined mysql connections now i want to use mssql connection for example subroutine.i tried but failed. i am thankful if any one could help this out..thanks in advance
Code:
use strict;
require Exporter;
use C4::Context;
use DBI;
use DBD::ODBC;
use CGI;
sub fixEthnicity($) {
my $ethnicity = shift;
my $dbh = C4::Context->dbh;
my
i am using mysql for my application. now i want to use mssql server windows authentication. i would b thankful if any one help me in step by step procedure for accesing mssql database from perl...