(PHP 4 >= 4.0.6, PHP 5)
fbsql_list_dbs — List databases available on a FrontBase server
Return a result pointer containing the databases available from the current fbsql daemon. Use the fbsql_tablename() to traverse this result pointer.
Un identificador de enlace FrontBase devuelto por fbsql_connect() o fbsql_pconnect().
Es opcional y si no se especifica, la función intentará encontrar un enlace abierto al servidor FrontBase y de no encontrarse ningún enlace abierto intentará crear uno como si fbsql_connect() fuese invocada sin parámetros.
Returns a result pointer or FALSE on error.
Example #1 fbsql_list_dbs() example
<?php
$link = fbsql_connect('localhost', 'myname', 'secret');
$db_list = fbsql_list_dbs($link);
while ($row = fbsql_fetch_object($db_list)) {
echo $row->Database . "\n";
}
?>
El resultado del ejemplo sería algo similar a:
database1 database2 database3 ...
Note:
The above code would just as easily work with fbsql_fetch_row() or other similar functions.