public interface StoredProcEngine
Modifier and Type | Method and Description |
---|---|
String |
getSPLangId()
Returns the unique identifier of the supported stored procedure language.
|
Object |
invokeProcedure(CoreSession session,
String fullSPName,
Object[] spArgs)
Invokes the stored procedure handled by the engine.
|
void |
setSPUnitEntry(org.apache.directory.shared.ldap.entry.ServerEntry spUnit)
Registers an entry found to be contaning a stored procedure unit which this engine can operate on.
|
String getSPLangId()
void setSPUnitEntry(org.apache.directory.shared.ldap.entry.ServerEntry spUnit)
This method should be called before an attempt to invoke a stored procedure via this Engine.
Object invokeProcedure(CoreSession session, String fullSPName, Object[] spArgs) throws Exception
fullSPName
- A fully qualified name of the stored procedure including its unit name.spArgs
- A list or arguments to be passed to the stored procedure. It should be an empty array if there aren't any parameters defined.NamingException
- If an error occurs during invocation.Exception
Copyright © 2003-2012 Apache Software Foundation. All Rights Reserved.