in reply to Re: DBI throwing segmentation fault
in thread DBI throwing segmentation fault
my code snippet which makes connection and the variables used in connection string is already having valid values defined
%attr = ( PrintError => 1, RaiseError => 1, ); $driver= "Oracle"; $dsn = "DBI:$driver:sid=$db_name;host=$host"; eval { $dbh = DBI->connect($dsn, "$user", "$passwd", \%attr); };if($@){ print "ERROR with connection: $@\n"; } print "Hello"; o/p: [lroot@slc11zrg ~]# perl_5.22 db.pl HelloSegmentation fault
Existing conf: Oracle Linux 7.x, Perl5.16 already installed Process I followed:-
export LD_LIBRARY_PATH=/usr/lib/oracle/12.2/client64/lib export ORACLE_HOME=/usr/lib/oracle/12.2/client64/
both paths are good and contain the Oracle instant client
Please let me know If I can give any further inputs.
Thanks,
Kuldip
2018-12-01 Athanasius added list and extra paragraph tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: DBI throwing segmentation fault
by marto (Cardinal) on Nov 29, 2018 at 12:00 UTC | |
by ksbehal (Acolyte) on Nov 29, 2018 at 12:21 UTC | |
by marto (Cardinal) on Nov 29, 2018 at 13:18 UTC | |
by Tux (Canon) on Nov 29, 2018 at 13:42 UTC |