View Javadoc

1   package groovy.sql;
2   /***
3    * Identifies a variable to be expanded into the
4    * sql string rather than representing a placeholder.
5    * @author rfuller
6    *
7    */
8   public interface ExpandedVariable {
9       public Object getObject();
10  }