Drupal 8 - 如何在自定义模块中切换到外部数据库?

Drupal 8 - How to switch to external database in custom module?

我正在尝试切换到并查询我创建的自定义 Drupal 8 模块中的外部数据库。

我在settings.php中的本地数据库下面添加了外部数据库:

// Add second database

$databases['external']['default'] = array(
  'database' => 'uconomy_external',
  'username' => 'uconomy_admin',
  'password' => 'fNjA9kC35h8',
  'prefix' => '',
  'host' => 'localhost',
  'port' => '3306',
  'namespace' => 'Drupal\Core\Database\Driver\mysql',
  'driver' => 'mysql',
);

然后我有一个名为 BusinessListingDbLogic.php 的文件,我在其中查询数据库:

<?php

namespace Drupal\business_listing;

use Drupal\Core\Database\Connection;
use Drupal\Core\Database\Database;

/**
* Defines a storage handler class that handles the node grants system.
*
* This is used to build node query access.
* 
* This class contains all the logic for interacting with our database 
* 
* @ingroup business_listing
*/
class BusinessListingDbLogic {

 /**
  * @var \Drupal\Core\Database\Connection
  */   
 protected $database;

     /**
     * @param \Drupal\Core\Database\Connection $connection
     */
 public function __construct(Connection $connection) {

   $this->database = $connection;
   //Database::setActiveConnection('external');

 }

 /**
  * Add new record in table business_listing.
  */
 public function add($title, $body, $imageName, $location, $email) {
   if (empty($title) || empty($body) || empty($imageName) || empty($location) || empty($email)) {
    return FALSE;
   }
   // add record to business_listing table in database.
   $query = $this->database->insert('business_listing');
   $query->fields(array(
    'title' => $title,
    'body' => $body,
    'image' => $imageName,
    'location' => $location,
    'email' => $email
   ));
   return $query->execute();
 }

我相信我的 BusinessListingDbLogic class 已注册为服务,我的 business_listing.services.yml 如下所示:

 services:
 # Service Name.
 business_listing.database.external:
   class: Drupal\Core\Database\Connection
   factory: 'Drupal\Core\Database\Database::getConnection'
   arguments: ['external']

 # external database dependent serivce.
 business_listing.db_logic:
   # Class that renders the service.
   # BusinessListingDbLogic contains all the functions we use to interact with the business_listings table
   class: Drupal\business_listing\BusinessListingDbLogic
   # Arguments that will come to the class constructor.
   arguments: ['@business_listing.database.external']
   # A more detailed explanation: https://www.drupal.org/node/2239393.
#   tags:
#    - { name: backend_overridable }

在我尝试取消注释之前,此代码一直有效 Database::setActiveConnection('external'); 然后我收到以下错误:

The website encountered an unexpected error. Please try again later.Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'uconomy_external.shortcut_set_users' doesn't exist: SELECT ssu.set_name AS set_name FROM {shortcut_set_users} ssu WHERE ssu.uid = :db_condition_placeholder_0; Array ( [:db_condition_placeholder_0] => 1 )

看起来切换正常,但 Drupal 可能会尝试使用外部数据库来实现其本机功能?我知道我也必须在某个时候切换回默认数据库,但我不确定在哪里做这个?

如有任何帮助或建议,我们将不胜感激。亲切的问候,马特

看来不是调用你当前的连接来设置,而是需要直接使用静态方法Database::setActiveConnection()

例如。 $this->database->setActiveConnection('external') 变为 Database::setActiveConnection('external')