return executionProcessor.executeStatement(connection, arguments);
}
protected void executeUpdate(Connection connection, String loaderId, @Nullable Object... arguments) throws SQLException {
StatementExecutionProcessor executionProcessor = processors.get(loaderId);
executionProcessor.executeUpdate(connection, arguments);
}
}