(PHP 4, PHP 5)
mysql_errno — ������һ�� MySQL �����еĴ�����Ϣ�����ֱ���
$link_identifier
] ) : int������һ�� MySQL �����Ĵ�����룬���û�г����� 0���㣩��
�� MySQL ���ݿ������Ĵ����ٷ������棬Ҫ�� mysql_errno() ����ȡ������롣ע�Ȿ�������������һ�� MySQL ������ִ�У������� mysql_error() �� mysql_errno()���Ĵ�����룬������Ҫʹ�ô˺�����ȷ���ڵ�����һ�� MySQL ����֮ǰ�������ֵ��
Example #1 mysql_errno() ����
<?php
mysql_connect("localhost", "mysql_user", "mysql_password");
mysql_select_db("nonexistentdb");
echo mysql_errno() . ": " . mysql_error(). "\n";
mysql_select_db("kossu");
mysql_query("SELECT * FROM nonexistenttable");
echo mysql_errno() . ": " . mysql_error() . "\n";
?>
�������ӽ��������������
1049: Unknown database 'nonexistentdb' 1146: Table 'kossu.nonexistenttable' doesn't exist
Note:
���ָ���˿�ѡ�������ø�����������ȡ������롣����ʹ����һ�������ӡ�
�μ� mysql_error()��