Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.hibernate.param
Interface ParameterSpecification  view ParameterSpecification download ParameterSpecification.java

All Known Subinterfaces:
ExplicitParameterSpecification
All Known Implementing Classes:
AbstractExplicitParameterSpecification, NamedParameterSpecification, PositionalParameterSpecification, VersionTypeSeedParameterSpecification

public interface ParameterSpecification

Maintains information relating to parameters which need to get bound into a JDBC java.sql.PreparedStatement.


Method Summary
 int bind(java.sql.PreparedStatement statement, org.hibernate.engine.QueryParameters qp, org.hibernate.engine.SessionImplementor session, int position)
          Bind the appropriate value into the given statement at the specified position.
 org.hibernate.type.Type getExpectedType()
           
 java.lang.String renderDisplayInfo()
           
 void setExpectedType(org.hibernate.type.Type expectedType)
           
 

Method Detail

bind

public int bind(java.sql.PreparedStatement statement,
                org.hibernate.engine.QueryParameters qp,
                org.hibernate.engine.SessionImplementor session,
                int position)
         throws java.sql.SQLException
Bind the appropriate value into the given statement at the specified position.


getExpectedType

public org.hibernate.type.Type getExpectedType()

setExpectedType

public void setExpectedType(org.hibernate.type.Type expectedType)

renderDisplayInfo

public java.lang.String renderDisplayInfo()