Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sqlsrv_configure(3) [php man page]

SQLSRV_CONFIGURE(3)													       SQLSRV_CONFIGURE(3)

sqlsrv_configure - Changes the driver error handling and logging configurations

SYNOPSIS
bool sqlsrv_configure (string $setting, mixed $value) DESCRIPTION
Changes the driver error handling and logging configurations. PARAMETERS
o $setting - The name of the setting to set. The possible values are "WarningsReturnAsErrors", "LogSubsystems", and "LogSeverity". o $value - The value of the specified setting. The following table shows possible values: Error and Logging Setting Options +-----------------------+---------------------------------------------------+ | Setting | | | | | | | Options | | | | +-----------------------+---------------------------------------------------+ |WarningsReturnAsErrors | | | | | | | 1 ( TRUE) or 0 ( FALSE) | | | | | LogSubsystems | | | | | | | SQLSRV_LOG_SYSTEM_ALL (-1) SQLSRV_LOG_SYSTEM_CONN | | | (2) SQLSRV_LOG_SYSTEM_INIT (1) SQLSRV_LOG_SYS- | | | TEM_OFF (0) SQLSRV_LOG_SYSTEM_STMT (4) SQL- | | | SRV_LOG_SYSTEM_UTIL (8) | | | | | LogSeverity | | | | | | | SQLSRV_LOG_SEVERITY_ALL (-1) SQLSRV_LOG_SEVER- | | | ITY_ERROR (1) SQLSRV_LOG_SEVERITY_NOTICE (4) SQL- | | | SRV_LOG_SEVERITY_WARNING (2) | | | | +-----------------------+---------------------------------------------------+ RETURN VALUES
Returns TRUE on success or FALSE on failure. SEE ALSO
SQLSRV Error Handling., Logging SQLSRV Activity.. PHP Documentation Group SQLSRV_CONFIGURE(3)

Check Out this Related Man Page

VARIANT_IMP(3)								 1							    VARIANT_IMP(3)

variant_imp - Performs a bitwise implication on two variants

SYNOPSIS
mixed variant_imp (mixed $left, mixed $right) DESCRIPTION
Performs a bitwise implication operation. PARAMETERS
o $left - The left operand. o $right - The right operand. Note As with all the variant arithmetic functions, the parameters for this function can be either a PHP native type (integer, string, floating point, boolean or NULL), or an instance of a COM, VARIANT or DOTNET class. PHP native types will be converted to variants using the same rules as found in the constructor for the "VARIANT" class. COM and DOTNET objects will have the value of their default property taken and used as the variant value. The variant arithmetic functions are wrappers around the similarly named functions in the COM library; for more information on these functions, consult the MSDN library. The PHP functions are named slightly differently; for example variant_add(3) in PHP cor- responds to VarAdd() in the MSDN documentation. RETURN VALUES
Variant Implication Table +------------+--------------------+---+ |If $left is | | | | | | | | | If $right is | | | | | | | | then the result is | | | | | | +------------+--------------------+---+ | | | | | TRUE | | | | | | | | | | | | | TRUE | | | | | | | | | | | | TRUE | | | | | | | | | | | TRUE | | | | | | | | | | | | | FALSE | | | | | | | | | | | | TRUE | | | | | | | | | | | TRUE | | | | | | | | | | | | | NULL | | | | | | | | | | | | TRUE | | | | | | | | | | | FALSE | | | | | | | | | | | | | TRUE | | | | | | | | | | | | TRUE | | | | | | | | | | | FALSE | | | | | | | | | | | | | FALSE | | | | | | | | | | | | TRUE | | | | | | | | | | | FALSE | | | | | | | | | | | | | NULL | | | | | | | | | | | | TRUE | | | | | | | | | | | NULL | | | | | | | | | | | | | TRUE | | | | | | | | | | | | TRUE | | | | | | | | | | | NULL | | | | | | | | | | | | | FALSE | | | | | | | | | | | | NULL | | | | | | | | | | | NULL | | | | | | | | | | | | | NULL | | | | | | | | | | | | NULL | | | | | | +------------+--------------------+---+ PHP Documentation Group VARIANT_IMP(3)
Man Page