public void execute()

in dekaf-jdbc/src/impl/JdbcSeance.java [129:156]


    public void execute(@Nullable final Iterable<?> paramValues) {
        checkPrepared();

        affectedRows = 0;
        rset = null;

        if (paramValues != null) assignParams(paramValues);

        try {
            switch (category) {
                case stmtSimple:
                    executeSimple();
                    break;
                case stmtUpdate:
                    executeUpdate();
                    break;
                case stmtQuery:
                    executeQuery();
                    break;
            }
        }
        catch (SQLException sqle) {
            throw new UnexpectedDBException(sqle, statementText);
        }
        catch (Exception e) {
            throw new UnexpectedDBException("Failed to execute the statement", e, statementText);
        }
    }