You are here

Connection.php in Drupal driver for SQL Server and SQL Azure 4.2.x

File

tests/database_statement_monitoring_test/Connection.php
View source
<?php

namespace Drupal\database_statement_monitoring_test\sqlsrv;

use Drupal\sqlsrv\Driver\Database\sqlsrv\Connection as BaseConnection;
use Drupal\database_statement_monitoring_test\LoggedStatementsTrait;

/**
 * SqlSrv Connection class that can log executed queries.
 */
class Connection extends BaseConnection {
  use LoggedStatementsTrait;

}

Classes

Namesort descending Description
Connection SqlSrv Connection class that can log executed queries.