MediaWiki REL1_39
defines.php
Go to the documentation of this file.
1<?php
2
5
9define( 'DBO_DEBUG', IDatabase::DBO_DEBUG );
10define( 'DBO_NOBUFFER', IDatabase::DBO_NOBUFFER );
11define( 'DBO_IGNORE', IDatabase::DBO_IGNORE );
12define( 'DBO_TRX', IDatabase::DBO_TRX );
13define( 'DBO_DEFAULT', IDatabase::DBO_DEFAULT );
14define( 'DBO_PERSISTENT', IDatabase::DBO_PERSISTENT );
15define( 'DBO_SYSDBA', IDatabase::DBO_SYSDBA );
16define( 'DBO_DDLMODE', IDatabase::DBO_DDLMODE );
18define( 'DBO_SSL', IDatabase::DBO_SSL );
19define( 'DBO_COMPRESS', IDatabase::DBO_COMPRESS );
26define( 'DB_REPLICA', ILoadBalancer::DB_REPLICA );
28define( 'DB_PRIMARY', ILoadBalancer::DB_PRIMARY );
30define( 'DB_MASTER', ILoadBalancer::DB_PRIMARY );
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:39
Create and track the database connections and transactions for a given database cluster.