1 21 22 package org.apache.derby.impl.sql.execute; 23 24 import org.apache.derby.iapi.error.StandardException; 25 import org.apache.derby.iapi.sql.execute.ConstantAction; 26 import org.apache.derby.iapi.sql.Activation; 27 28 29 36 37 class MiscResultSet extends NoRowsResultSetImpl 38 { 39 private final ConstantAction constantAction; 40 41 48 MiscResultSet(Activation activation) 49 throws StandardException 50 { 51 super(activation); 52 constantAction = activation.getConstantAction(); 53 } 54 55 public void open() throws StandardException 56 { 57 constantAction.executeConstantAction(activation); 58 super.close(); 59 } 60 61 64 public void cleanUp() 65 { 66 } 67 } 68 | Popular Tags |