2012-10-29 43 views
2

我只是想在我的應用程序中使用更新,但我不能。一個控制檯,這個mysql命令有效,但在這裏,不。MySQL Java更新語法

嗯,我在我的程序使用此:

conexao = poolMySQL.connect(); 
    final String sql = "UPDATE professor SET codlocal = ? WHERE codprof = ?"; 

    pstmt = conexao.prepareStatement(sql); 


    pstmt.setInt(1, local); 
    pstmt.setInt(2, id); 
    try { 
     pstmt.executeUpdate(sql); 
    } catch (SQLException ex) { 
     Logger.getLogger(ProfessorDAO.class.getName()).log(Level.SEVERE, null, ex); 
    } 

只是提醒,codlocal是從另一個表,命名Localidade的外鍵。我看到了一些關於加入的例子,但我無法想象這可以爲我工作。

而且我得到這個:

Grave: null 
    com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '? WHERE codprof = ?' at line 1 
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57) 
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 
    at java.lang.reflect.Constructor.newInstance(Constructor.java:525) 
    at com.mysql.jdbc.Util.handleNewInstance(Util.java:409) 
    at com.mysql.jdbc.Util.getInstance(Util.java:384) 
    at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1054) 
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3566) 
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3498) 
    at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1959) 
    at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2113) 
    at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2562) 
    at com.mysql.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1664) 
    at com.mysql.jdbc.StatementImpl.executeUpdate(StatementImpl.java:1583) 
    at DAO.ProfessorDAO.atualizaLocalidade(ProfessorDAO.java:153) 
    at DAO.Main.main(Main.java:23) 

那麼,我該怎麼辦?

回答

5

您必須使用pstmt.executeUpdate();代替pstmt.executeUpdate(sql);

+0

哇,那很尷尬。謝啦。 –

+0

無時無刻不在... – thedayofcondor