Return an array with the list of all existing CUBRID databases

cubrid_list_dbs

(PECL CUBRID >= 8.3.0)

cubrid_list_dbsReturn an array with the list of all existing CUBRID databases

說明

cubrid_list_dbs(resource $conn_identifier = ?): array

This function returns an array with the list of all existing Cubrid databases.

參數

conn_identifier

The CUBRID connection.

返回值

An numeric array with all existing Cubrid databases; on success.

false on failure.

範例

示例 #1 cubrid_list_dbs() example

<?php
$conn 
cubrid_connect("localhost"33000"demodb");

$db_list cubrid_list_dbs($conn);
var_dump($db_list);

cubrid_disconnect($conn);
?>

以上例程會輸出:

array(1) {
  [0]=>
  string(6) "demodb"
}

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *