uk.org.ogsadai.converters.databaseschema
Interface StoredProcedureMetaData


public interface StoredProcedureMetaData

Metadata about a stored procedure.

Author:
The OGSA-DAI Team.

Method Summary
 java.lang.String getCatalog()
          Returns the catalog where this stored procedure is stored.
 java.lang.String getComments()
          Returns the explanatory comments for this stored procedure.
 java.lang.String getName()
          Returns the name of this stored procedure.
 java.lang.String getSchema()
          Returns the name of the schema where this stored procedure is stored.
 int getType()
          Returns the type of results that can be expected from this stored procedure.
 

Method Detail

getName

public java.lang.String getName()
Returns the name of this stored procedure.

Returns:
procedure name.

getCatalog

public java.lang.String getCatalog()
Returns the catalog where this stored procedure is stored.

Returns:
catalog name.

getSchema

public java.lang.String getSchema()
Returns the name of the schema where this stored procedure is stored.

Returns:
schema name.

getType

public int getType()
Returns the type of results that can be expected from this stored procedure.

Returns:
procedure type.
See Also:
DatabaseMetaData.getProcedures(java.lang.String, java.lang.String, java.lang.String)

getComments

public java.lang.String getComments()
Returns the explanatory comments for this stored procedure.

Returns:
comments.
See Also:
DatabaseMetaData.getProcedures(java.lang.String, java.lang.String, java.lang.String)