|
cubrid_set_db_parameterSets the CUBRID database parameters Description
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:
Parameters
Return Values
Returns ExamplesExample #1 cubrid_get_db_parameter example The above example will output:
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)
}
See Also
|