cubrid_db_name

(PECL CUBRID >= 8.3.1)
Get db name from results of cubrid_list_dbs
string cubrid_db_name ( array $result, int $index )

Retrieve the database name from a call to cubrid_list_dbs().

Parameters:
result

The result pointer from a call to cubrid_list_dbs().

index

The index into the result set.

Returns:

Returns the database name on success, and FALSE on failure. If FALSE is returned, use cubrid_error() to determine the nature of the error.

Examples:
cubrid_db_name() example
<?php
error_reporting(E_ALL);

$conn = cubrid_connect('localhost', 33000, 'demodb', 'dba', '');
$db_list = cubrid_list_dbs($conn);

$i = 0;
$cnt = count($db_list);
while ($i < $cnt) {
    echo cubrid_db_name($db_list, $i) . "\n";
    $i++;
}
?>

The above example will output:

demodb
See also:

cubrid_list_dbs() -

doc_php
2016-02-24 16:16:08
Comments
Leave a Comment

Please login to continue.