programing

오류 java.sql.SQLException: ORA-00911: 잘못된 문자

i4 2023. 2. 20. 23:57
반응형

오류 java.sql.SQLException: ORA-00911: 잘못된 문자

코드에 오류가 있습니다.

String sql = "CREATE USER ken IDENTIFIED BY 11;";

try {
    Class.forName("oracle.jdbc.OracleDriver");
    con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", "system", "kenilyas");
    System.out.println("1111111111111");
    System.out.println("222222");
    pst = con.prepareStatement(sql);
    System.out.println("333333");
    try {
        System.out.println("333333");
        pst.execute();
        System.out.println("creating");
    } catch (Exception e) {
        JOptionPane.showMessageDialog(null, e);
    }
} catch (Exception e) {
    JOptionPane.showMessageDialog(null, e);
}

문제는요.;

sql = "CREATE USER ken IDENTIFIED BY 11;";

를 삭제합니다.;위 문자열에서.

myBatis에서도 같은 문제가 발생하였습니다.

오류:

### Cause: java.sql.SQLSyntaxErrorException: ORA-00911: invalid character

    ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: ORA-00911: invalid character

솔루션:

select * from tableName where id= '123';

제거한 후";"Where 절(Mybatis Mapper xml)에서 동작합니다.

언급URL : https://stackoverflow.com/questions/22435756/error-java-sql-sqlexception-ora-00911-invalid-character

반응형