���ڰ��� PHP �����ݿ�֮���ϵ�ij������⡣�ǵģ�PHP ��ʵ�Ͽ��Է���������е��κ����ݿ⡣
�� Windows �����У����Լ�ʹ�����õ� ODBC ֧�ֺ���ȷ�� ODBC ��������
�� Unix �����У������� Sybase-CT �������������� Microsoft SQL Server����Ϊ���ǵ�Э���ǣ����ٴ֣����ݵġ�Sybase ����һ�� Linux ϵͳ����������Ѱ汾���������� Unix ����ϵͳ����Ҫ�� Sybase ��ϵ���õ���ȷ�Ŀ⡣ͬ��Ҳ������һ������Ļش�
���ԡ������ȫ�� Windows 9x/Me/NT/2000 �����У����Ѿ�������������Ĺ��ߣ������� ODBC �� Microsoft's ODBC drivers for Microsoft Access database��
����� Unix ������ PHP ������� Windows �е� MS Access������Ҫ Unix ODBC �������� » OpenLink Software��һ������ Unix �� ODBC �����������������¡�
����һ������������ô� Windows ODBC ������ SQL Server ���������������ݣ�����ͨ�� Microsoft Access���� ODBC���� PHP�������������������ʣ�������һ�� Access �� PHP ��ʶ����м��ļ���ʽ������ flat �ļ����� dBase ���ݿ⡣������һ�� OpenLink Software �� Tim Hayes д����
������ͨ�� ODBC ֱ�Ӵ� PHP �������ݿ�ʱ——������ OpenLink ����������ʹ���������ݿ����м�ý�鲻��һ�������⡣���ȷʵ��Ҫһ���м��ļ���ʽ��OpenLink �Ѿ������˶�Ӧ�� Windows NT��Linux ������ Unix ƽ̨�� Virtuoso��һ���������ݿ����棩����������ǵ� » ��վ��������ء�
����һ���ѱ�֤ʵ��Ч��ѡ������ Windows ���� MySQL ������ MyODBC ������ͬ�����ݿ⡣Steve Lawrence д����
��ʾ�뼼�ɣ�
����ȥ���п��ܵ��ǣ�PHP 4 �ڱ���ʱʹ���� --with-mysql ѡ�û��ָ�� MySQL ��·��������ζ�� PHP ʹ�������Լ����õ� MySQL �ͻ��˿⡣������ϵͳ������ʹ�������汾�� MySQL �ͻ��˿��Ӧ�ó���������Ϊ Apache ģ��� PHP 3����ô��������ͬ�汾�Ŀͻ���֮���г�ͻ��
���±��� PHP 4�����ڱ���м��� MySQL ��·��" --with-mysql=/your/path/to/mysql"ͨ�����������⡣
There are three MySQL extensions, as described under the Choosing a MySQL API section. The old API should not be used, and one day it will be deprecated and eventually removed from PHP. It is a popular extension so this will be a slow process, but you are strongly encouraged to write all new code with either mysqli or PDO_MySQL.
Migration scripts are not available at this time, although the mysqli API contains both a procedural and OOP API, with the procedural version being similar to ext/mysql.
It is not possible to mix the extensions. So, for example, passing a mysqli connection to PDO_MySQL or ext/mysql will not work.
����ͼ��һ��ֵΪ 0 �Ľ����Դ�š�0 ��ʾ��IJ�ѯ����ijԭ��ʧ���ˣ���Ҫ���ύ��ѯ֮�����ʹ�÷��ؽ����Դ��֮ǰ��������ȷ�ķ��������������µĴ��룺
<?php
$result = mysql_query("SELECT * FROM tables_priv");
if (!$result) {
echo mysql_error();
exit;
}
?>
<?php
$result = mysql_query("SELECT * FROM tables_priv")
or die("Bad query: " . mysql_error());
?>