com.j_spaces.jdbc
Interface IProcedure


public interface IProcedure

The IProcedure interface should be implemented when using the JDBC API to invoke Java classes business logic at the space side. The IProcedure interface includes the execute method that returns ResultEntry


Method Summary
 ResultEntry execute(Connection connection, IJSpace space, ArrayList paramList)
          The execute method should include the business logic to be invoked at the server side
 

Method Detail

execute

ResultEntry execute(Connection connection,
                    IJSpace space,
                    ArrayList paramList)
                    throws SQLException
The execute method should include the business logic to be invoked at the server side

Parameters:
connection - JDBC Connection
space - The embedded space proxy
paramList - Parameters to pass to the stored procedure
Returns:
Returns result set into the form of ResultEntry.
Throws:
{@link - SQLException}
SQLException