Tabnine Logo
Result.close
Code IndexAdd Tabnine to your IDE (free)

How to use
close
method
in
mondrian.olap.Result

Best Java code snippets using mondrian.olap.Result.close (Showing top 4 results out of 315)

origin: pentaho/pentaho-kettle

public void close() {
 if ( result != null ) {
  try {
   result.close();
  } catch ( Exception ignored ) {
origin: pentaho/mondrian

  public void close() {
    underlying.close();
  }
}
origin: pentaho/mondrian

public void close() {
  if (closed) {
    return;
  }
  this.closed = true;
  final ProfileHandler profileHandler =
    olap4jStatement.getProfileHandler();
  if (profileHandler != null) {
    final StringWriter stringWriter = new StringWriter();
    final PrintWriter printWriter = new PrintWriter(stringWriter);
    olap4jStatement.getQuery().explain(printWriter);
    printWriter.close();
    profileHandler.explain(stringWriter.toString(), getQueryTiming());
  }
  if (this.result != null) {
    this.result.close();
  }
  olap4jStatement.onResultSetClose(this);
}
origin: jasperreports/jasperreports

public void close()
{
  if (result != null)
  {
    result.close();
    result = null;
  }
}
mondrian.olapResultclose

Popular methods of Result

  • getAxes
  • getCell
  • getQuery
  • print
  • getSlicerAxis
    Returns the slicer axis.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • startActivity (Activity)
  • onCreateOptionsMenu (Activity)
  • onRequestPermissionsResult (Fragment)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • JCheckBox (javax.swing)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now