01: package com.esri.sde.sdk.client;
02:
03: import com.esri.sde.sdk.client.SeTable.SeTableStats;
04:
05: public class SeQuery {
06:
07: public SeQuery(SeConnection c) {
08: }
09:
10: public SeQuery(SeConnection c, String[] s, SeSqlConstruct y) {
11: }
12:
13: public static/* GEOT-947 final*/short SE_OPTIMIZE = 0;
14:
15: public void prepareQuery() {
16: }
17:
18: public void prepareQueryInfo(SeQueryInfo i) throws SeException {
19: }
20:
21: public SeExtent calculateLayerExtent(SeQueryInfo i) {
22: return null;
23: }
24:
25: public void close() throws SeException {
26: }
27:
28: public void execute() throws SeException {
29: }
30:
31: public void flushBufferedWrites() {
32: }
33:
34: public void cancel(boolean b) {
35: }
36:
37: public void setRowLocking(int i) {
38: }
39:
40: public SeRow fetch() {
41: return null;
42: }
43:
44: public void setSpatialConstraints(short i, boolean b, SeFilter[] f) {
45: }
46:
47: public SeTableStats calculateTableStatistics(String s, int i,
48: SeQueryInfo q, int j) {
49: return null;
50: }
51:
52: public void queryRasterTile(SeRasterConstraint c) {
53: }
54:
55: public void prepareSql(String s) {
56: }
57:
58: }
|