1 package org.hibernate.param; 3 4 import org.hibernate.engine.QueryParameters; 5 import org.hibernate.engine.SessionImplementor; 6 7 import java.sql.PreparedStatement ; 8 import java.sql.SQLException ; 9 10 16 public interface ParameterSpecification { 17 27 public int bind(PreparedStatement statement, QueryParameters qp, SessionImplementor session, int position) throws SQLException ; 28 } 29 | Popular Tags |