View Javadoc

1   
2   package groovy.sql;
3   
4   /***
5    * @author rfuller
6    *
7    * A parameter to be returned from a CallableStatement.
8    */
9   public interface OutParameter {
10  	/***
11  	 * Get the JDBC datatype for this parameter.
12  	 * @return
13  	 */
14       public int getType();
15  }