sybase_min_client_severity

(PHP 4, PHP 5)

sybase_min_client_severitySets minimum client severity

Опис

void sybase_min_client_severity ( int $severity )

sybase_min_client_severity() sets the minimum client severity level.

Параметри

severity

Значення, що повертаються

Не повертає значень.

Примітки

Зауваження: This function is only available when using the CT library interface to Sybase, and not with the DB library.

Прогляньте Також

add a note add a note

User Contributed Notes 3 notes

up
0
sean dot healey at bayernlb dot co dot uk
18 years ago
Sybase considers severity levels 0-16 as non-fatal. Above that you probably don't want to block messages.
up
0
rudolf at 1stomni dot com
22 years ago
This parameter setup level of responce mesage filtering when you compile
--with-sybase_ct

<?
sybase_min_client_severity(9);
sybase_min_server_severity(9);
$db=sybase_connect("mdserver","sa","");
?>

Will result:
Warning: Sybase: Server message: Changed database context to 'master'.
(severity 10, procedure N/A) in
/var/www/html/DBAdmins/phpSybaseAdmin/test.php on line 4

<?
sybase_min_client_severity(100);
sybase_min_server_severity(100);
$db=sybase_connect("mdserver","sa","");
?>

Will not generate warning!!!

Can be used for SYBASE debugging !
up
-1
Anonymous
22 years ago
The severity levels mentioned here are referenced in the Sybase System Administration documentation. I didn't know that, and it annoyed me. Now you know.
To Top