解決java.sql.SQLException: ORA-01006: 綁定變量不存在

    rs = pstam.executeQuery("select * from dept"); pstam是一個preparedStatement,不能這麼用。由於它要求要綁定變量,因此出現你說的錯。 在oracle jdbc中,你得定義一個新的statement Statement stmt = conn.createStatement(); rs = stmt.executeQuery(
相關文章
相關標籤/搜索