Using Strawberry Perl for Oracle-Access #216
Replies: 4 comments 5 replies
-
DBD and DBI are still there. What method are you trying and what's not working? |
Beta Was this translation helpful? Give feedback.
-
I use something like that: Code`#! /usr/local/bin/perl $drh = DBI->install_driver('Oracle') or die "Error:install_driver Keine Verbindung zur Datenbanktreiber:\n$DBI::errstr\n"; $stmt="SELECT DISTINCT u.TABLE_NAME FROM user_tab_columns u WHERE u.TABLE_NAME like '%BEARBN%' ORDER BY u.TABLE_NAME"; print "Test-Statement '$stmt'\n"; exit(0); Problem:install_driver(Oracle) failed: Can't locate DBD/Oracle.pm in @inc (you may need to install the DBD::Oracle module) (@inc entries checked: C:/DEV/strawberry-perl-5.40.0.1-64bit-portable/perl/site/lib C:/DEV/strawberry-perl-5.40.0.1-64bit-portable/perl/vendor/lib C:/DEV/strawberry-perl-5.40.0.1-64bit-portable/perl/lib) at (eval 10) line 3. my expectation:prepare Test-Statement |
Beta Was this translation helpful? Give feedback.
-
Since Oracle 19, Oracle provide a image type of client which include a DBD with a perl. It's portable, free and easy-use. you could download ,extract and use it(perl, DBI and DBD::Oracle) directly, you also could use it in strawberry perl by use lib pragma. |
Beta Was this translation helpful? Give feedback.
-
Dear Community,
I enjoy using Strawberry Perl scripts for Oracle database evaluations.
Unfortunately, DBD support has been missing since strawberry-perl-5.32.1.1.
Is it correct that it will not return with strawberry-perl-5.40.0.1 either?
Will it be gone permanently?
Beta Was this translation helpful? Give feedback.
All reactions