1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace Wikimedia\Rdbms\Database;
/**
* @ingroup Database
*/
interface IDatabaseFlags {
/** Do not remember the prior flags */
public const REMEMBER_NOTHING = '';
/** Remember the prior flags */
public const REMEMBER_PRIOR = 'remember';
/** Restore to the prior flag state */
public const RESTORE_PRIOR = 'prior';
/** Restore to the initial flag state */
public const RESTORE_INITIAL = 'initial';
/** Enable debug logging of all SQL queries */
public const DBO_DEBUG = 1;
/** Unused since 1.34 */
public const DBO_NOBUFFER = 2;
/** Unused since 1.31 */
public const DBO_IGNORE = 4;
/** Automatically start a transaction before running a query if none is active */
public const DBO_TRX = 8;
/** Join load balancer transaction rounds (which control DBO_TRX) in non-CLI mode */
public const DBO_DEFAULT = 16;
/** Use DB persistent connections if possible */
public const DBO_PERSISTENT = 32;
/** DBA session mode; was used by Oracle */
public const DBO_SYSDBA = 64;
/** Schema file mode; was used by Oracle */
public const DBO_DDLMODE = 128;
/**
* Enable SSL/TLS in connection protocol
* @deprecated since 1.39 use 'ssl' parameter
*/
public const DBO_SSL = 256;
/** Enable compression in connection protocol */
public const DBO_COMPRESS = 512;
/** Optimize connection for guaging server state (e.g. ILoadBalancer::CONN_UNTRACKED_GAUGE) */
public const DBO_GAUGE = 1024;
/**
* Set a flag for this connection
*
* @param int $flag One of (IDatabase::DBO_DEBUG, IDatabase::DBO_TRX)
* @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
*/
public function setFlag( $flag, $remember = self::REMEMBER_NOTHING );
/**
* Clear a flag for this connection
*
* @param int $flag One of (IDatabase::DBO_DEBUG, IDatabase::DBO_TRX)
* @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
*/
public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING );
/**
* Restore the flags to their prior state before the last setFlag/clearFlag call
*
* @param string $state IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR]
* @since 1.28
*/
public function restoreFlags( $state = self::RESTORE_PRIOR );
/**
* Returns a boolean whether the flag $flag is set for this connection
*
* @param int $flag One of the class IDatabase::DBO_* constants
* @return bool
*/
public function getFlag( $flag );
}
|