blob: 33c3f23a2e57e6aa7d57a1cb13d8d6bef644403a [file] [log] [blame]
package groovy.sql;
/**
* @author rfuller
*
* A typed parameter to pass to a query
*/
public interface InParameter {
/**
* The JDBC data type.
*/
public int getType();
/**
* The object holding the data value.
*/
public Object getValue();
}