mysql_list_tables

(PHP 4, PHP 5)

mysql_list_tables�г� MySQL ���ݿ��еı�

˵��

mysql_list_tables ( string $database [, resource $link_identifier ] ) : resource

mysql_list_tables() ����һ�����ݿ��������غ� mysql_query() ���������Ƶ�һ�����ָ�롣�� mysql_tablename() �����������˽��ָ�룬�����κ�ʹ�ý����ĺ��������� mysql_fetch_array()��

database ��������Ҫ��ȡ�����еĵı��������ݿ��������ʧ�� mysql_list_tables() ���� FALSE��

Ϊ���¼�����Ȼ����ʹ�ñ������ı��� mysql_listtables()����������������

Note: �ú����Ѿ���ɾ���ˣ��벻Ҫ��ʹ�øú����������������� SHOW TABLES FROM DATABASE ��ʵ�ָú����Ĺ��ܡ�

Example #1 mysql_list_tables() ����

<?php
    $dbname 
'mysql_dbname';

    if (!
mysql_connect('mysql_host''mysql_user''mysql_password')) {
        print 
'Could not connect to mysql';
        exit;
    }

    
$result mysql_list_tables($dbname);

    if (!
$result) {
        print 
"DB Error, could not list tables\n";
        print 
'MySQL Error: ' mysql_error();
        exit;
    }

    while (
$row mysql_fetch_row($result)) {
        print 
"Table: $row[0]\n";
    }

    
mysql_free_result($result);
?>

�μ� mysql_list_dbs() �� mysql_tablename()��