in reply to Re^3: Perl Interpreter Stopped Working . kernelbase.dll error
in thread Perl Interpreter Stopped Working . kernelbase.dll error
Thanks for the suggestion
The below code worked fine for me !
Thanks :)#!/usr/bin/perl use strict; use warnings; use DBI; #use DBD::ODBC; my @row; my $user = 'XXXX'; my $password = 'XXX'; my $dbh = DBI->connect("dbi:Oracle:host=XXX;sid=XXX", $user, $password +);
|
|---|