PHP Doku:: Returns the CUBRID database parameters - function.cubrid-get-db-parameter.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_get_db_parameter

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_get_client_info

cubrid_get_server_info>>

cubrid_get_db_parameter

(PECL CUBRID >= 8.3.0)

cubrid_get_db_parameterReturns the CUBRID database parameters

Beschreibung

array cubrid_get_db_parameter ( resource $conn_identifier )

This function returns the CUBRID database parameters or it returns FALSE on failure. It returns an associative array with the values for the following parameters:

  • CCI_PARAM_ISOLATION_LEVEL
  • CCI_PARAM_LOCK_TIMEOUT
  • CCI_PARAM_MAX_STRING_LENGTH
  • CCI_PARAM_AUTO_COMMIT

Parameter-Liste

conn_identifier

The CUBRID connection. If the connection identifier is not specified, the last link opened by cubrid_connect() is assumed.

Rückgabewerte

An associative array with CUBRID database parameters; on success.

FALSE on failure.

Beispiele

Beispiel #1 cubrid_get_db_parameter() example

<?php
    $link 
cubrid_connect("localhost"30000"demodb2""dba""");
    if (!
$link)
    {
        die(
'Could not connect.');
    }
    echo 
"CUBRID parameters:<br>";
    
print_r(cubrid_get_db_parameter($link));
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Result:
CUBRID parameters:
Array ( [PARAM_ISOLATION_LEVEL] => 3 [LOCK_TIMEOUT] => -1 [MAX_STRING_LENGTH] => 1073741823 )

Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)