Revision 44191 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/JDBCHelper.java

View differences:

JDBCHelper.java
7 7
import org.gvsig.fmap.dal.exception.DataException;
8 8
import org.gvsig.fmap.dal.exception.InitializeException;
9 9
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
10
import org.gvsig.fmap.dal.feature.FeatureQueryOrder;
10 11
import org.gvsig.fmap.dal.feature.FeatureType;
11 12
import org.gvsig.fmap.dal.feature.spi.FeatureProvider;
12 13
import org.gvsig.fmap.dal.resource.exception.AccessResourceException;
......
21 22
import org.gvsig.fmap.geom.Geometry;
22 23
import org.gvsig.fmap.geom.GeometryManager;
23 24
import org.gvsig.fmap.dal.store.jdbc2.spi.SRSSolver;
25
import org.gvsig.tools.evaluator.Evaluator;
24 26

  
25 27
public interface JDBCHelper extends AutoCloseable {
26 28

  
......
91 93
     */
92 94
    public boolean hasSpatialFunctions();
93 95

  
96
    public boolean supportFilter(Evaluator evaluator);
97
    
98
    public boolean supportOrder(FeatureQueryOrder order);
99
    
100
    public boolean allowNestedOperations();
94 101
    /**
95 102
     * Indica si podemos escribir el tipo de geometria indicado.
96 103
     *
......
111 118
    
112 119
    public JDBCConnectionParameters getConnectionParameters();
113 120

  
114
    public void closeConnection(
115
            Connection connection
116
    );
121
    public void closeConnection(Connection connection);
117 122

  
123
    public void closeConnectionQuietly(Connection connection);
124

  
118 125
    public GeometryManager getGeometryManager();
119 126

  
120 127
    public ResulSetControler getResulSetControler();

Also available in: Unified diff