Unverified Commit 76661ed8 authored by Fabian Franz's avatar Fabian Franz Committed by GitHub
Browse files

Merge pull request #10 from LionsAd/issue-3126559--move-to-src

Issue #3126559 by xiukun.zhou, Fabianx, 司南: Contrib database drivers can now be in the module's namespace and "src" directory
parents 0a358729 3f9fd817
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{
  "name": "drupal/oracle",
  "description": "Database driver that allows Drupal to use Oracle as database engine.",
  "type": "drupal-database-driver",
  "type": "drupal-module",
  "homepage": "https://drupal.org/project/oracle",
  "authors": [
    {

oracle.info.yml

0 → 100644
+4 −0
Original line number Diff line number Diff line
name: 'Oracle'
type: module
core_version_requirement: ^8.8 || ^9
package: 'Development'
+2 −2
Original line number Diff line number Diff line
<?php

namespace Drupal\Driver\Database\oracle;
namespace Drupal\oracle\Driver\Database\oracle;

use Drupal\Core\Database\DatabaseExceptionWrapper;
use Drupal\Core\Database\IntegrityConstraintViolationException;
@@ -177,7 +177,7 @@ class Connection extends DatabaseConnection {
  /**
   * {@inheritdoc}
   */
  protected $statementClass = 'Drupal\Driver\Database\oracle\Statement';
  protected $statementClass = 'Drupal\oracle\Driver\Database\oracle\Statement';

  /**
   * {@inheritdoc}
+1 −1
Original line number Diff line number Diff line
<?php

namespace Drupal\Driver\Database\oracle;
namespace Drupal\oracle\Driver\Database\oracle;

use Drupal\Core\Database\Query\Delete as QueryDelete;

+0 −0

File moved.

Loading