Revision 44752 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.db/org.gvsig.fmap.dal.db.jdbc/src/main/java/org/gvsig/fmap/dal/store/jdbc2/spi/JDBCHelperBase.java

View differences:

JDBCHelperBase.java
166 166
    return QUOTE_FOR_USE_IN_STRINGS;
167 167
  }
168 168

  
169
  protected boolean supportCaller(Code.Caller caller) {
169
  protected boolean supportCaller(Code.Callable caller) {
170 170
    if (StringUtils.equalsIgnoreCase(caller.name(), "FOREING_VALUE")) {
171 171
      return true;
172 172
    }
......
229 229
        public void visit(Object code_obj) throws VisitCanceledException, BaseException {
230 230
          Code code = (Code) code_obj;
231 231
          switch (code.code()) {
232
            case Code.CALLER:
233
              Code.Caller caller = (Code.Caller) code;
232
            case Code.CALLABLE:
233
              Code.Callable caller = (Code.Callable) code;
234 234
              if (!supportCaller(caller)) {
235 235
                isCompatible.setValue(false);
236 236
                throw new VisitCanceledException();

Also available in: Unified diff