PHP Call to External Database

I can’t bee too specific answering your question, but you can certainly use a $wpdb instance to access another database:

$db = new wpdb('user', 'password', 'dbname', 'dbhost');
$results = $db->get_results('..query..');