Package com.dci.intellij.dbn.database.common.statement

Examples of com.dci.intellij.dbn.database.common.statement.StatementExecutionProcessor


        processors.clear();
        Document document = CommonUtil.loadXmlFile(getClass(), fileName);
        Element root = document.getRootElement();
        for (Object child : root.getChildren()) {
            Element element = (Element) child;
            StatementExecutionProcessor executionProcessor = new StatementExecutionProcessor(element, provider);
            String id = executionProcessor.getId();
            processors.put(id, executionProcessor);
        }
    }
View Full Code Here


    protected ResultSet executeQuery(Connection connection, String loaderId, @Nullable Object... arguments) throws SQLException {
        return executeQuery(connection, true, loaderId, arguments);
    }

    protected ResultSet executeQuery(Connection connection, boolean forceExecution, String loaderId, @Nullable Object... arguments) throws SQLException {
        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        return executionProcessor.executeQuery(connection, forceExecution, arguments);
    }
View Full Code Here

        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        return executionProcessor.executeQuery(connection, forceExecution, arguments);
    }

    protected <T extends CallableStatementOutput> T executeCall(Connection connection, @Nullable T outputReader, String loaderId, @Nullable Object... arguments) throws SQLException {
        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        return executionProcessor.executeCall(connection, outputReader, arguments);
    }
View Full Code Here

        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        return executionProcessor.executeCall(connection, outputReader, arguments);
    }

    protected boolean executeStatement(Connection connection, String loaderId, @Nullable Object... arguments) throws SQLException {
        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        return executionProcessor.executeStatement(connection, arguments);
    }
View Full Code Here

        StatementExecutionProcessor executionProcessor = processors.get(loaderId);
        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);
    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.database.common.statement.StatementExecutionProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.