java.sql.SQLException:参数索引超出范围(0 <1)

时间:2014-04-22 10:30:54

标签: java sql sql-server prepared-statement

我正在尝试从数据库中检索值但显示

  

java.sql.SQLException:参数索引超出范围(0 <1)。

我的代码

tcID=(PreparedStatement) con.prepareStatement(
        "select tc_id,tc_name from testcase where scenario_id=? and project_id=?");
tcID.setString(1,scenarioID);  // this line causes the exception
tcID.setString(2,project);
ResultSet rs = tcID.executeQuery();

任何人都可以解释,为什么第二行会抛出此异常?

0 个答案:

没有答案