java数据库报错String sql="select user,password,type, from student where user=? and password=?

YouhaveanerrorinyourSQLsyntax;checkthemanualthatcorrespondstoyourMySQLserverversionfo... 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 'from student where user=? and password=?' at line 1

部分源代码:
public void actionPerformed(ActionEvent e) {
String user=jtfUser.getText();
student yu=null;
if (e.getSource() == jbtOk) {
if (jtfUser.getText().equals("") || jtfPass.getText().equals("")) {
if (JOptionPane.showConfirmDialog(this, "用户ID和密码不能为空!", "退出界面",JOptionPane.OK_CANCEL_OPTION) == JOptionPane.OK_OPTION);
} else {String sql="select user,password,type, from student where user=? and password=? and type=?";
PreparedStatement stmt=null;
ResultSet re=null;
try {
stmt=conn.prepareStatement(sql);
stmt.setString(1,user);

re=stmt.executeQuery(sql);// 调用db.JdbcConnection类中的executeQuery()方法,返回单个结果集
if (re.next()) // 调用next()指针从当前位置下移一行
{
if(jcbUserType.getSelectedItem().equals("学生"))
right = 2; // 学生用户权限为2
else if(jcbUserType.getSelectedItem().equals("教师"))
right = 1; // 教师用户权限为1
else if(jcbUserType.getSelectedItem().equals("教务管理员"))
right = 0; // 教务管理员为0
大神。。。求帮忙啊。,数据库建立了的
展开
 我来答
5544ppo
2013-12-15 · TA获得超过1370个赞
知道小有建树答主
回答量:364
采纳率:0%
帮助的人:327万
展开全部
String sql="select user,password,type, from student where user=? and password=? and type=?";

中有三个问号,一个问号就要传递一个参数。所以要传递三个参数

stmt=conn.prepareStatement(sql);
stmt.setString(1,user);

可以看你只设置了一个参数,那么后面的两个问号没有设置参数,所以就会报错。
1842tx
2013-12-15 · 超过58用户采纳过TA的回答
知道小有建树答主
回答量:252
采纳率:0%
帮助的人:154万
展开全部
select user,password,type from student...
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
单身Mvp
2013-12-15 · TA获得超过245个赞
知道小有建树答主
回答量:240
采纳率:100%
帮助的人:150万
展开全部
需要传入三个参数 你只传了一个。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式