org.jooq
Interface StoredFunction<T>

Type Parameters:
T - The return type
All Superinterfaces:
Adapter, Attachable, Comparable<NamedQueryPart>, FieldLike, NamedQueryPart, QueryPart, SchemaProvider, Serializable, StoredObject
All Known Implementing Classes:
StoredFunctionImpl

Deprecated. - 1.6.8 [#852] - The stored procedure / stored function distinction has been reviewed in jOOQ. The 12 currently supported RDBMS have such a distinct idea of what is a procedure and what is a function that it makes no longer sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for more details.

@Deprecated
public interface StoredFunction<T>
extends StoredObject, FieldLike

A stored function

Author:
Lukas Eder

Method Summary
 T getReturnValue()
          Deprecated.  
 
Methods inherited from interface org.jooq.StoredObject
execute, execute, getPackage, getParameters
 
Methods inherited from interface org.jooq.NamedQueryPart
getName
 
Methods inherited from interface org.jooq.QueryPart
getSQL
 
Methods inherited from interface org.jooq.Attachable
attach
 
Methods inherited from interface org.jooq.Adapter
internalAPI
 
Methods inherited from interface java.lang.Comparable
compareTo
 
Methods inherited from interface org.jooq.SchemaProvider
getSchema
 
Methods inherited from interface org.jooq.FieldLike
asField, asField
 

Method Detail

getReturnValue

T getReturnValue()
Deprecated. 
Returns:
The function's return value


Copyright © 2011. All Rights Reserved.