我正在尝试从数据库中检索值但显示
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();
任何人都可以解释,为什么第二行会抛出此异常?