Adapter
1 month ago
Schema
2 weeks ago
Adapter.php
1 month ago
AdapterInterface.php
1 month ago
BatchInsert.php
6 months ago
Schema.php
1 month ago
SchemaInterface.php
1 month ago
Settings.php
1 year ago
TransactionLevel.php
1 year ago
TransactionalDatabaseDynamicTrait.php
1 year ago
TransactionalDatabaseInterface.php
1 year ago
TransactionalDatabaseStaticTrait.php
1 year ago
TransactionalDatabaseInterface.php
12 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Piwik\Db; |
| 4 | |
| 5 | interface TransactionalDatabaseInterface |
| 6 | { |
| 7 | public function getCurrentTransactionIsolationLevelForSession() : string; |
| 8 | public function setTransactionIsolationLevel(string $level) : void; |
| 9 | public function getSupportsTransactionLevelForNonLockingReads() : ?bool; |
| 10 | public function setSupportsTransactionLevelForNonLockingReads(?bool $supports = null) : void; |
| 11 | } |
| 12 |