"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > 유효한 INSERT 문을 사용했는데도 JDBC 코드에서 MySQLSyntaxErrorException이 발생하는 이유는 무엇입니까?

유효한 INSERT 문을 사용했는데도 JDBC 코드에서 MySQLSyntaxErrorException이 발생하는 이유는 무엇입니까?

2024-11-07에 게시됨
검색:644

Why does my JDBC code throw a MySQLSyntaxErrorException despite using a valid INSERT statement?

JDBC 예외: 유효한 SQL 문에 대한 MySQLSyntaxError

이 기사에서는 JDBC를 사용하여 데이터를 MySQL 데이터베이스. MySQL Workbench에서 유효한 INSERT 문을 실행했음에도 불구하고 MySQLSyntaxError 예외가 발생했습니다.

근본 원인을 조사하기 위해 코드를 분석해 보겠습니다.

public static boolean aggiungiElem(String nome, GrafoGenerico g){
    if(connessioneAperta()){
        try{
            String sqlCommandUser = "SELECT USER()";
            String sqlCommandInserim = "INSERT INTO salvataggi VALUES ( ? , ? , DEFAULT , NULL );";
            PreparedStatement sUser = conn.prepareStatement(sqlCommandUser);
            ... // Execute user query
            PreparedStatement sInserim = conn.prepareStatement(sqlCommandInserim);
            sInserim.setString(1, utente);
            sInserim.setString(2, nome);
            System.out.println(sInserim);
            sInserim.executeUpdate(sqlCommandInserim);
            ... // Close PreparedStatements and ResultSet
        }
        catch(SQLException e){
            e.printStackTrace();
            return false;
        }
    }
    else
        return false;
}

스택 추적 검사:

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 '? , ? , DEFAULT , NULL )' at line 1

이 오류는 SQL 문에 구문 오류가 있음을 나타냅니다. 그러나 INSERT 문은 올바른 것 같습니다.

자세히 조사한 결과,executeUpdate() 메서드가 preparedStatement sInserim 대신 문자열 인수 SQLCommandInserim을 사용하는 것을 알 수 있습니다. 이는 코드의 실수입니다.

해결책:

이 문제를 해결하려면 다음 줄을 바꾸십시오.

sInserim.executeUpdate(sqlCommandInserim);

With:

sInserim.executeUpdate();

PreparedStatement에서 ExecuteUpdate()를 호출하면 JDBC가 자리 표시자(?)를 대체합니다. setString() 메서드를 사용하여 설정된 값으로 구문 오류를 방지합니다.

추가 고려 사항:

또한 finally 블록을 사용하여 모든 데이터베이스를 닫는 것이 좋습니다. 예외 발생 시 리소스 누출을 방지하기 위한 객체(PreparedStatements, Connections, Names 및 ResultSets).

최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3