如何在netbeans中执行procedure
?
我写下面的查询,但它有错误。
statement.execute("call customer_fnaem('lisa','test')");
答案 0 :(得分:0)
我认为'Netbeans'表示你想从Java调用存储过程。使用JDBC将类似于以下内容:
CallableStatement statement = connection.prepareCall("{ call customer_fnaem(?, ?) }");
proc.setString(1, "lisa");
proc.setString(2, "test");
cs.execute();