Query: mssql_min_message_severity
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MSSQL_MIN_MESSAGE_SEVERITY(3) MSSQL_MIN_MESSAGE_SEVERITY(3) mssql_min_message_severity - Sets the minimum message severitySYNOPSISvoid mssql_min_message_severity (int $severity)DESCRIPTIONSets the minimum message severity.PARAMETERSo $severity - The new message severity.RETURN VALUESNo value is returned.EXAMPLESExample #1 mssql_min_message_severity(3) example <?php // Connect to MSSQL mssql_connect('KALLESPCSQLEXPRESS', 'sa', 'phpfi'); // Set the minimum message severity to 17, this // will not show any messages issued by the underlaying // API when we select a non-existent database below mssql_min_message_severity(17); // Select a non-existent database mssql_select_db('THIS_DATABASE_DOES_NOT_EXISTS'); ?> The above example will output: mssql_select_db(): Unable to select database: THIS_DATABASE_DOES_NOT_EXISTS PHP Documentation Group MSSQL_MIN_MESSAGE_SEVERITY(3)
| Related Man Pages |
|---|
| addseverity(3) - centos |
| mssql_field_length(3) - php |
| mssql_select_db(3) - php |
| mssql_init(3) - php |
| sybase_set_message_handler(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| Access denied for user at localhost |
| Warning: Failed to create the file wso.php: Permission denied |