我在php中有以下脚本来登录mysql
$db_host="localhost";
$db_user="root";
$db_pass="123";
$dbc=mysql_connect($db_host,$db_user,$db_pass) OR DIE (mysql_error());
$dbs=mysql_select_db($db_name) OR DIE (mysql_error());
这个脚本工作得很好,现在我重新安装了操作系统,现在我有Windows7、iis7和PHP5.3.2& mysql
我刚用MySQL5.6设置了CF10、win2008、IIS7.5。但是我们得到了这个错误:
Error Executing Database Query.
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=DEFAULT
当我显式地设置“限制”查询时,此错误将被删除。
(从评论更新)
下面是一个示例:
<cfque