Hi,
I am trying to call the DBI routines of perl from a C-program. Like this
eval_pv("use DBI;my $dbh =
DBI->connect('DBI:Oracle:mydatabase','scott','tiger')",TRUE);
It gives the following error while executing (compilation successful)
Error:
...
Can't load module DBI, dynamic loading not available in this perl.
(You may need to build a new perl executable which either supports
dynamic loading or has the DBI module statically linked into it.)
...
How to make a new perl executable supporting dynamic loading or link DBI module
statically.
Kindly help
Praveen