📄 realnorowsresultsetstatistics.java
字号:
/* Derby - Class org.apache.derby.impl.sql.execute.rts.RealNoRowsResultSetStatistics Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.impl.sql.execute.rts;import org.apache.derby.iapi.services.io.Formatable;import org.apache.derby.iapi.services.i18n.MessageService;import org.apache.derby.iapi.reference.SQLState;import java.io.ObjectOutput;import java.io.ObjectInput;import java.io.IOException;import java.util.Vector;/** ResultSetStatistics implemenation for NoPutResultSetImpl. @author jerry*/abstract class RealNoRowsResultSetStatistics implements ResultSetStatistics{ /* Leave these fields public for object inspectors */ /* fields used for formating run time statistics output */ protected String indent; protected String subIndent; protected int sourceDepth; public ResultSetStatistics sourceResultSetStatistics; protected long executeTime; // variables to implement the inspectable interface. // Do these have to be public? public long inspectOverall; public long inspectNum; public String inspectDesc; // CONSTRUCTORS /** * Initializes the time spent in NoRowsResultSet minus the source * result set. */ public RealNoRowsResultSetStatistics(long executeTime, ResultSetStatistics sourceRS) { if (sourceRS instanceof RealBasicNoPutResultSetStatistics) this.executeTime = executeTime - ((RealBasicNoPutResultSetStatistics)sourceRS).getTotalTime(); } /** * Initialize the format info for run time statistics. */ protected void initFormatInfo(int depth) { char [] indentchars = new char[depth]; char [] subIndentchars = new char[depth + 1]; sourceDepth = depth + 1; /* ** Form an array of tab characters for indentation. */ subIndentchars[depth] = '\t'; while (depth > 0) { subIndentchars[depth - 1] = '\t'; indentchars[depth - 1] = '\t'; depth--; } indent = new String(indentchars); subIndent = new String(subIndentchars); } /** * Dump out the time information for run time stats. * * @return String to be printed out. */ protected String dumpTimeStats(String indent) { return indent + MessageService.getTextMessage(SQLState.RTS_EXECUTE_TIME) + " = " + executeTime + "\n"; } /** * Get the objects to be displayed when this tree object is expanded. * <P> * The objects returned can be of any type, including addtional Inspectables. * * @return java.util.Vector A vector of objects. */ public Vector getChildren(){ Vector children = new Vector(); children.addElement(sourceResultSetStatistics); return children; } /** * Format for display, a name for this node. * */ public abstract String getNodeName(); /** * Get the estimated row count for the number of rows returned * by the associated query or statement. * * @return The estimated number of rows returned by the associated * query or statement. */ public double getEstimatedRowCount() { return 0.0; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -