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

Examples of com.dci.intellij.dbn.database.common.debug.VariableInfo


        this.variableName = variableName;
        this.debugProcess = debugProcess;
        this.icon = icon == null ? Icons.DBO_VARIABLE : icon;
        this.frameIndex = frameIndex;
        try {
            VariableInfo variableInfo = debugProcess.getDebuggerInterface().getVariableInfo(
                    variableName.toUpperCase(), frameIndex,
                    debugProcess.getDebugConnection());
            textPresentation = variableInfo.getValue();
            errorMessage = variableInfo.getError();
           
            if (textPresentation == null) {
                textPresentation = "null";
            } else {
                if (!StringUtil.isNumber(textPresentation)) {
View Full Code Here


    public ExecutionStatusInfo getExecutionStatusInfo(Connection connection) throws SQLException {
        return executeCall(connection, new ExecutionStatusInfo(), "get-execution-status-info");
    }

    public VariableInfo getVariableInfo(String variableName, Integer frameNumber, Connection connection) throws SQLException {
        return executeCall(connection, new VariableInfo(), "get-variable", variableName, frameNumber);
    }
View Full Code Here

TOP

Related Classes of com.dci.intellij.dbn.database.common.debug.VariableInfo

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.