(PECL CUBRID >= 8.3.0)
cubrid_list_dbs — Returns an array with the list of all existing Cubrid databases
This function returns an array with the list of all existing Cubrid databases.
The CUBRID connection. If the connection identifier is not specified, the last link opened by cubrid_connect() is assumed.
An numeric array with all existing Cubrid databases; on success.
FALSE on failure.
Przykład #1 cubrid_list_dbs() example
<?php
$link = cubrid_connect("localhost", 30000, "demodb2", "dba", "");
if (!$link)
{
die('Could not connect.');
}
echo "CUBRID databases:<br>";
print_r(cubrid_list_dbs($link));
?>
Powyższy przykład wyświetli:
Result: CUBRID databases: Array ( [0] => demodb2 [1] => cubrid3 )