in reply to Connect to remote Oracle DB
4. Connect Oracle database by specifying the remote host.grant ALL ON DB.* to 'user'@'UNIX BOX IP' identified by 'password'
use DBI; $dbh = DBI->connect("DBI:mysql:host=IP ADDRESS;database=$dbname","user +name","password");
|
|---|