public boolean hasResultSet() {
return hasResultSet;
}
public TOperationHandle toTOperationHandle() {
TOperationHandle tOperationHandle = new TOperationHandle();
tOperationHandle.setOperationId(getHandleIdentifier().toTHandleIdentifier());
tOperationHandle.setOperationType(opType.toTOperationType());
tOperationHandle.setHasResultSet(hasResultSet);
return tOperationHandle;
}