Commit e3041064 authored by Fabian Franz's avatar Fabian Franz
Browse files

Issue #3126559: Rename namespace

parent 2959d840
Loading
Loading
Loading
Loading
+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;

+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\Database;
use Drupal\Core\Database\Query\Insert as QueryInsert;
+2 −2
Original line number Diff line number Diff line
<?php

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

use Drupal\Core\Database\Install\Tasks as InstallTasks;
use Drupal\Core\Database\Database;
use Drupal\Driver\Database\oracle\Connection;
use Drupal\oracle\Driver\Database\oracle\Connection;

/**
 * Specifies installation tasks for Oracle and equivalent databases.
+2 −2
Original line number Diff line number Diff line
<?php

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

/**
 * Handle long identifiers for Oracle database.
@@ -31,7 +31,7 @@ class LongIdentifierHandler {
  /**
   * The parent connection.
   *
   * @var \Drupal\Driver\Database\oracle\Connection
   * @var \Drupal\oracle\Driver\Database\oracle\Connection
   */
  private $connection;

Loading