Uses of Class
net.sourceforge.sqlunit.beans.Param

Packages that use Param
net.sourceforge.sqlunit.beans Beans for the SQLUnit handlers. 
net.sourceforge.sqlunit.handlers Handler implementations for SQLUnit. 
net.sourceforge.sqlunit.tools Contains tools to build SQLUnit test cases. 
 

Uses of Param in net.sourceforge.sqlunit.beans
 

Methods in net.sourceforge.sqlunit.beans with parameters of type Param
 void SubRoutine.addParam(Param param)
          Convenience method to add a single param to the subroutine.
 

Uses of Param in net.sourceforge.sqlunit.handlers
 

Methods in net.sourceforge.sqlunit.handlers with parameters of type Param
protected  void CallHandler.clrOutputParameters(java.sql.Statement cs, Param[] params)
          Overrides the parent method to clear parameters in the DatabaseResult object.
protected  void SqlHandler.clrOutputParameters(java.sql.Statement ps, Param[] params)
          Clears output parameter symbol table variables.
protected  java.lang.Object SqlHandler.executeSQL(java.lang.String connectionId, java.lang.String stmt, Param[] params)
          Executes JDBC calls to build the DatabaseResult object and returns it.
protected  void CallHandler.setOutputParameters(java.sql.Statement cs, Param[] params, DatabaseResult result)
          Overrides the parent method to set the OUT parameters into the DatabaseResult object.
protected  void SqlHandler.setOutputParameters(java.sql.Statement ps, Param[] params, DatabaseResult result)
          Sets the output parameters into the DatabaseResult.
protected  java.sql.Statement CallHandler.setParameters(java.sql.Statement cs, Param[] params)
          Overrides the parent method to set replaceable parameters, if any, into the CallableStatement object.
protected  java.sql.Statement SqlHandler.setParameters(java.sql.Statement ps, Param[] params)
          Sets replaceable parameters, if any, into the Statement object.
 

Uses of Param in net.sourceforge.sqlunit.tools
 

Methods in net.sourceforge.sqlunit.tools with parameters of type Param
static void ToolUtils.makeTest(java.lang.String sql, Param[] params, java.lang.String testName, java.util.Properties config)
          Runs a database query with the specified Connection object and the Properties file passed in.