b420ca1078e807aa360f3cb080767950b3671caf
[lhc/web/wiklou.git] / includes / libs / rdbms / defines.php
1 <?php
2
3 /**@{
4 * Database related constants
5 */
6 define( 'DBO_DEBUG', 1 );
7 define( 'DBO_NOBUFFER', 2 );
8 define( 'DBO_IGNORE', 4 );
9 define( 'DBO_TRX', 8 ); // automatically start transaction on first query
10 define( 'DBO_DEFAULT', 16 );
11 define( 'DBO_PERSISTENT', 32 );
12 define( 'DBO_SYSDBA', 64 ); // for oracle maintenance
13 define( 'DBO_DDLMODE', 128 ); // when using schema files: mostly for Oracle
14 define( 'DBO_SSL', 256 );
15 define( 'DBO_COMPRESS', 512 );
16 /**@}*/
17
18 /**@{
19 * Valid database indexes
20 * Operation-based indexes
21 */
22 define( 'DB_REPLICA', -1 ); # Read from a replica (or only server)
23 define( 'DB_MASTER', -2 ); # Write to master (or only server)
24 /**@}*/