rs = pstam.executeQuery("select * from dept");
pstam是一个preparedStatement,不能这么用。因为它要求要绑定变量,所以出现你说的错。
在oracle jdbc中,你得定义一个新的statement
Statement stmt = conn.createStatement();
rs = stmt.executeQuery("select * from dept");
rs = pstam.executeQuery("select * from dept");
pstam是一个preparedStatement,不能这么用。因为它要求要绑定变量,所以出现你说的错。
在oracle jdbc中,你得定义一个新的statement
Statement stmt = conn.createStatement();
rs = stmt.executeQuery("select * from dept");