fbsql_list_dbs
(PHP 4 >= 4.0.6)
fbsql_list_dbs --
FrontBaseサーバで利用可能なデータベースの一覧を得る
説明
resource
fbsql_list_dbs ( [resource link_identifier])
fbsql_list_dbs() will return a result pointer
containing the databases available from the current fbsql
daemon. Use the fbsql_tablename() function to
traverse this result pointer.
例 1fbsql_list_dbs()の例 $link = fbsql_connect('localhost', 'myname', 'secret');
$db_list = fbsql_list_dbs($link);
while ($row = fbsql_fetch_object($db_list)) {
echo $row->Database . "\n";
} |
|
上の例の出力は以下のようになります。