we are trying to somehow show fields from nodes existing in a different drupal database than the default. Eg. in the site the module is installed (drupal2) we have the following settings.php
$databases = array (
'drupal1db' =>
array (
'default' =>
array (
'database' => 'drupal1db',
....
'default' =>
array (
'default' =>
array (
'database' => 'drupal2db',
...
is there a way to override views so that it displays content with specific type "eg news" from the drupal1db and/or from both the databases?
Thank you