in reply to Re^4: DBI throwing segmentation fault
in thread DBI throwing segmentation fault
I trust you rebuild DBI/DBD::Oracle under 5.22 and didn't copy the files? Set export DBI_TRACE=9 then run a basic connection script:
use strict; use warnings; use DBI; # declare your sid, user, pass etc variables here; my $dbh = DBI->connect("dbi:Oracle:host=$host;sid=$sid", $user, $passw +d );
Specify the versions of DBI/DBD::Oracle, the version of instant client, the output of perl -V, maybe even the build log of cpanm DBD::Oracle. Remember the code/data formatting and readmore tags. How do I post a question effectively?
Update fixed link..
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: DBI throwing segmentation fault
by Tux (Canon) on Nov 29, 2018 at 13:42 UTC |