org.axiondb.jdbc
Class AxionPreparedStatement.Parameters

java.lang.Object
  extended by org.axiondb.jdbc.AxionPreparedStatement.Parameters
Enclosing class:
AxionPreparedStatement

protected class AxionPreparedStatement.Parameters
extends Object


Constructor Summary
AxionPreparedStatement.Parameters(int size)
           
 
Method Summary
 void assertBindVariablesSet()
           
 void clearBindings()
           
 Object get(int i)
          Get the value of parameter i.
 Object[] getValues()
           
 void set(int i, Object val)
          Set the value of parameter i to val.
 int size()
          Return the number of parameters I contain.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AxionPreparedStatement.Parameters

public AxionPreparedStatement.Parameters(int size)
Method Detail

get

public Object get(int i)
Get the value of parameter i. Note that the index is zero-based.


set

public void set(int i,
                Object val)
         throws SQLException
Set the value of parameter i to val. Note that the index is zero-based.

Throws:
SQLException

assertBindVariablesSet

public void assertBindVariablesSet()
                            throws SQLException
Throws:
SQLException

clearBindings

public final void clearBindings()

size

public int size()
Return the number of parameters I contain.


getValues

public Object[] getValues()