Link to home
Start Free TrialLog in
Avatar of admiral
admiral

asked on

SQL from a perl program

I have a program which executes the
following :
system("sqlplus login/login@password")

this logs me into an SQL session.
Is there a way I can now execute
SQL statements from the perl program?
Avatar of olthoff
olthoff

use DBI;

This allows you to connect to the database and run whatever queries that you like.
ASKER CERTIFIED SOLUTION
Avatar of mjswart
mjswart

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial