|
cubrid_set_db_parameterSets the CUBRID database parameters Beschreibung
bool cubrid_set_db_parameter
( resource
$conn_identifier
, int $param_type
, int $param_value
)The cubrid_set_db_parameter function is used to set the CUBRID database parameters. It can set the following CUBRID database parameters:
Parameter-Liste
Rückgabewerte
BeispieleBeispiel #1 cubrid_get_db_parameter example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
array(4) {
["PARAM_ISOLATION_LEVEL"]=>
int(3)
["PARAM_LOCK_TIMEOUT"]=>
int(-1)
["PARAM_MAX_STRING_LENGTH"]=>
int(1073741823)
["PARAM_AUTO_COMMIT"]=>
int(0)
}
array(4) {
["PARAM_ISOLATION_LEVEL"]=>
int(2)
["PARAM_LOCK_TIMEOUT"]=>
int(-1)
["PARAM_MAX_STRING_LENGTH"]=>
int(1073741823)
["PARAM_AUTO_COMMIT"]=>
int(1)
}
Siehe auch
|