08-04
29
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server versio
作者:Java伴侣 日期:2008-04-29
原来这个程序数据库是SQL2000,换成MYSQL,结果报错。
错误代码:
String sql="from NewsVO as n where n.cate=" + Integer.parseInt(id) + " order by n.id desc;";
正确的:
String sql="from NewsVO as n where n.cate=" + Integer.parseInt(id) + " order by n.id desc";
无语了吧。。
复制内容到剪贴板 程序代码
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 '; limit 16' at line 1
错误代码:
String sql="from NewsVO as n where n.cate=" + Integer.parseInt(id) + " order by n.id desc;";
正确的:
String sql="from NewsVO as n where n.cate=" + Integer.parseInt(id) + " order by n.id desc";
无语了吧。。
评论: 0 | 引用: 0 | 查看次数: 4925
发表评论