Original MySQL API (
Mysql
)
2284
Note
Because
mysql_insert_id
acts on the last performed query, be sure to call
mysql_insert_id
immediately after the query that generates the value.
Note
The value of the MySQL SQL function
LAST_INSERT_ID()
always contains
the most recently generated AUTO_INCREMENT value, and is not reset
between queries.
See Also
mysql_query
mysql_info
20.7.2.5.32.
mysql_list_dbs
Copyright 1997-2012 the PHP Documentation Group. [2230]
•
mysql_list_dbs
List databases available on a MySQL server
Warning
This extension is deprecated as of PHP 5.5.0, and will be removed in the
future. Instead, the
MySQLi
or
PDO_MySQL
extension should be used. See
also
MySQL: choosing an API
guide and
related FAQ
for more information.
Alternatives to this function include:
SQL Query:
SHOW DATABASES
Description
resource mysql_list_dbs(
resource link_identifier
= =NULL);
Returns a result pointer containing the databases available from the current mysql daemon.
Warning
This function has been DEPRECATED as of PHP 5.4.0. Relying on this function
is highly discouraged.
Parameters
link_identifier
The MySQL connection. If the link identifier is not specified, the
last link opened by
mysql_connect
is assumed. If no such link
is found, it will try to create one as if
mysql_connect
was called
with no arguments. If no connection is found or established, an
E_WARNING
level error is generated.
Return Values
Returns a result pointer resource on success, or
FALSE
on failure. Use the
mysql_tablename
function to traverse this result pointer, or any function for result tables, such as
mysql_fetch_array
.
Examples
Example 20.60.
mysql_list_dbs
example
Summary of Contents for 5.0
Page 1: ...MySQL 5 0 Reference Manual ...
Page 18: ...xviii ...
Page 60: ...40 ...
Page 396: ...376 ...
Page 578: ...558 ...
Page 636: ...616 ...
Page 844: ...824 ...
Page 1234: ...1214 ...
Page 1427: ...MySQL Proxy Scripting 1407 ...
Page 1734: ...1714 ...
Page 1752: ...1732 ...
Page 1783: ...Configuring Connector ODBC 1763 ...
Page 1793: ...Connector ODBC Examples 1773 ...
Page 1839: ...Connector Net Installation 1819 2 You must choose the type of installation to perform ...
Page 2850: ...2830 ...
Page 2854: ...2834 ...
Page 2928: ...2908 ...
Page 3000: ...2980 ...
Page 3122: ...3102 ...
Page 3126: ...3106 ...
Page 3174: ...3154 ...
Page 3232: ...3212 ...