Man Page: mssql_min_message_severity
Operating Environment: php
Section: 3
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) - debian |
| gldebugmessageinsert(3g) - centos |
| mssql_field_length(3) - php |
| errorexception(3) - php |
| mssql_get_last_message(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 |