如下代码,出现了异常,求大神解决。说是SQL语句问号出现了异常,看了半天没看出哪里有问题!!!

importjava.sql.*;importjava.util.Random;publicclassSqlName{publicstaticfinalStringurl... import java.sql.*;
import java.util.Random;
public class SqlName {
public static final String url = "jdbc:mysql://127.0.0.1/student";
public static final String user = "root";
public static final String password = "root";

public static void main(String[] args) {
Connection con= null;
PreparedStatement pst = null;
ResultSet rs = null;

Random ran=new Random();
int i=ran.nextInt(17);
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection(url, user, password);

String s="select name from information where id=? ";//说这里语法有问题

pst=con.prepareStatement(s);
pst.setInt(1, i);
rs = pst.executeQuery(s);

String name = rs.getString("name");
System.out.println(name);

} catch (SQLException e) {
e.printStackTrace();
}
catch (Exception e) {
e.printStackTrace();
}
finally{
try {
rs.close();//出错位置
pst.close();
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
如下是异常提示:
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 '?' at line 1
展开
 我来答
你瞒我瞒陈广aw
2016-06-26 · TA获得超过323个赞
知道小有建树答主
回答量:416
采纳率:33%
帮助的人:251万
展开全部
你的SQL不规范,写有的问题,缺少GROUP关键字。

SQL结尾需要加上 group by user_id
追问
不对,是rs那个语句不需要参数。已经解决啦
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式