sql >> Database teknologi >  >> RDS >> Mysql

EntityManager-undtagelseshåndtering i sessionsbean

Jeg har et forslag, som jeg bruger i min ansøgning. Vi kan hente SQLException fra PersistenceException . Prøv derefter at få sql error code for SQLException . Hvis dit krav er at få sql error code , du kan følge mit eksempel;

public void insert(Group group) throws DAOException {
    try {
        //your operation
        em.flush();
        logger.debug("insert() method has been successfully finisehd.");
    } catch (PersistenceException pe) {
        String sqlErroCode = getErrorCode(pe);
        // do your operation based on sql errocode
    }
}

protected String getErrorCode(RuntimeException e) {
    Throwable throwable = e;
    while (throwable != null && !(throwable instanceof SQLException)) {
        throwable = throwable.getCause();
    }
    if (throwable instanceof SQLException) {
        Properties properties = --> load sql error code form configuration file.
        SQLException sqlex = (SQLException) throwable;
        String errorCode = properties.getProperty(sqlex.getErrorCode() + "");
        return errorCode;
    }
    return "NONE";
}

Eksempel på fejlkodekonfiguration af mysql

mysql_error_code.properties

#MySQL Database
1062=DUPLICATE_KEY_FOUND
1216=CHILD_RECORD_FOUND
1217=PARENT_RECORD_NOT_FOUND
1048=NULL_VALUE_FOUND
1205=RECORD_HAS_BEEN_LOCKED 



  1. Indsæt array i MySQL-database med PHP

  2. Hvor får jeg libpq-kilden?

  3. Find afhængigheder i SQL Server:sql_expression_dependencies

  4. PDO med MySQL virker ikke i e-mailaktivering