MySQL 函数
在线手册:中文 英文
PHP手册

mysql_db_name

(PHP 4, PHP 5)

mysql_db_name取得结果数据

说明

string mysql_db_name ( resource $result , int $row [, mixed $field ] )

取得 mysql_list_dbs() 调用所返回的数据库名。

参数

result

mysql_list_dbs() 调用所返回的结果指针。

row

结果集中的行号。

field

字段名。

返回值

如果成功则返回数据库名,失败返回 FALSE。如果返回了 FALSE,用 mysql_error() 来判断错误的种类。

范例

Example #1 mysql_db_name() 例子

<?php
error_reporting
(E_ALL);

$link mysql_connect('dbhost''username''password');
$db_list mysql_list_dbs($link);

$i 0;
$cnt mysql_num_rows($db_list);
while (
$i $cnt) {
    echo 
mysql_db_name($db_list$i) . "\n";
    
$i++;
}
?>

注释

Note: Suggested alternatives

Use of this extension is discouraged. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API for more information.

Alternatives to this function include:

  • Query: SELECT DATABASE()

Note:

为了向下兼容,可以使用下列已废弃的别名: mysql_dbname()

参见


MySQL 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 取得结果数据

用户评论:

ericpp % bigfoot.com (16-Mar-2005 04:13)

If you just need the current database name, you can use MySQL's SELECT DATABASE() command:

<?php
function mysql_current_db() {
   
$r = mysql_query("SELECT DATABASE()") or die(mysql_error());
    return
mysql_result($r,0);
}
?>