com.esri.sde.sdk.client
Class SeParameterInfo

java.lang.Object
  extended by com.esri.sde.sdk.client.SeParameterInfo

public final class SeParameterInfo
extends java.lang.Object

The represents the values of dynamic parameters used in prepared SQL statements.


Constructor Summary
SeParameterInfo(int numParameters)
          Creates a new instance of SeParameterInfo
 
Method Summary
 void setDate(int parameterIndex, java.util.Calendar value)
          Sets the value for a Date parameter.
 void setDouble(int parameterIndex, java.lang.Double value)
          Sets the value for a Double parameter.
 void setFloat(int parameterIndex, java.lang.Float value)
          Sets the value for a floating point parameter.
 void setInteger(int parameterIndex, java.lang.Integer value)
          Sets the value for an Integer parameter.
 void setShort(int parameterIndex, java.lang.Short value)
          Sets the value for a Short parameter.
 void setString(int parameterIndex, java.lang.String value)
          Sets the value for a String parameter.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SeParameterInfo

public SeParameterInfo(int numParameters)
                throws SeException
Creates a new instance of SeParameterInfo

Throws:
SeException
Method Detail

setDate

public void setDate(int parameterIndex,
                    java.util.Calendar value)
Sets the value for a Date parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value

setDouble

public void setDouble(int parameterIndex,
                      java.lang.Double value)
Sets the value for a Double parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value

setFloat

public void setFloat(int parameterIndex,
                     java.lang.Float value)
Sets the value for a floating point parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value

setInteger

public void setInteger(int parameterIndex,
                       java.lang.Integer value)
Sets the value for an Integer parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value

setShort

public void setShort(int parameterIndex,
                     java.lang.Short value)
Sets the value for a Short parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value

setString

public void setString(int parameterIndex,
                      java.lang.String value)
Sets the value for a String parameter.

Parameters:
parameterIndex - the index value of the parameter. The first parameter is 1, second is 2, ...
value - the parameter value