<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\OCI8; /** * Encapsulates the execution mode that is shared between the connection and its statements. * * @internal This class is not covered by the backward compatibility promise */ final class ExecutionMode { private bool $isAutoCommitEnabled = true; public function enableAutoCommit(): void { $this->isAutoCommitEnabled = true; } public function disableAutoCommit(): void { $this->isAutoCommitEnabled = false; } public function isAutoCommitEnabled(): bool { return $this->isAutoCommitEnabled; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Exception | Folder | 0755 |
|
|
Middleware | Folder | 0755 |
|
|
Connection.php | File | 4.08 KB | 0644 |
|
ConvertPositionalToNamedPlaceholders.php | File | 1.28 KB | 0644 |
|
Driver.php | File | 1.22 KB | 0644 |
|
ExecutionMode.php | File | 636 B | 0644 |
|
Result.php | File | 2.91 KB | 0644 |
|
Statement.php | File | 4.93 KB | 0644 |
|