13

尝试从我的数据库连接和检索数据时出现这种错误。

方法 executeQuery() 不能接受 PreparedStatement 或 CallableStatement 的参数。

我的代码是这样的。

String search = request.getParameter("searchstudent");
out.println(search);

String connectionURL = "jdbc:sqlserver://localhost:1433;databaseName=Chingdb;   integratedSecurity=true;";
 Connection connection = null;
 PreparedStatement pstatement = null;
 Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
 ResultSet rs = null;
int updateQuery = 0;


if(request.getParameter("editstudent")!= null){ 
    try {           
     connection = DriverManager.getConnection(connectionURL, "root", "root");
     String queryString = "SELECT P_ID, lname, fname, mname FROM stu_info Where lname = ?";
     pstatement = connection.prepareStatement(queryString);
     pstatement.setString(1, search);
     rs = pstatement.executeQuery(queryString);
        updateQuery = pstatement.executeUpdate();
        %>
        <TABLE cellpadding="15" border="1" style="background-color: #ffffcc;">
        <%
        while (rs.next()) {
        %>
        <TR>
        <TD><%=rs.getInt(1)%></TD>
        <TD><%=rs.getString(2)%></TD>
        <TD><%=rs.getString(3)%></TD>
        <TD><%=rs.getString(4)%></TD>
        </TR></TABLE>
        <% 

        rs.close();
        pstatement.close();
        connection.close();

        }
        }

    catch(Exception e){
    out.println(e);
    }

   }
4

3 回答 3

17

你第二次不需要 queryString ,因为你用这个“告诉”preparedStatement 字符串:

pstatement = connection.prepareStatement(queryString);

这将是正确的方法:

 pstatement = connection.prepareStatement(queryString);
 pstatement.setString(1, search);
 rs = pstatement.executeQuery();
于 2012-10-22T05:39:07.790 回答
2

尝试

 rs = pstatement.executeQuery();

您在创建preparedstatement时已经指定了查询

 pstatement = connection.prepareStatement(queryString);
于 2012-10-22T05:37:01.437 回答
2

只需{ }为您的 querystring.ie添加

String queryString = "{SELECT P_ID, lname, fname, mname FROM stu_info Where lname = ?}";

execute()并且executeUpdate()都可以工作。executeQuery()仅当您的过程返回结果集时才有效。

于 2013-10-24T06:55:54.167 回答