KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dml > CursorIterator


1 package com.daffodilwoods.daffodildb.server.sql99.dml;
2
3 import com.daffodilwoods.daffodildb.client.*;
4 import com.daffodilwoods.daffodildb.server.datasystem.interfaces.*;
5 import com.daffodilwoods.daffodildb.server.datasystem.utility._Record;
6 import com.daffodilwoods.daffodildb.server.sql99.common.*;
7 import com.daffodilwoods.daffodildb.server.sql99.dql.execution.*;
8 import com.daffodilwoods.daffodildb.server.sql99.dql.iterator.*;
9 import com.daffodilwoods.daffodildb.server.sql99.utils.*;
10 import com.daffodilwoods.database.resource.*;
11 import com.daffodilwoods.database.sqlinitiator.*;
12
13 public class CursorIterator extends BaseExceptionSingleIterator implements _Iterator {
14
15    _TableIterator iterator = null;
16
17    public CursorIterator() {
18    }
19
20    public CursorIterator(_TableIterator iter) {
21       iterator = iter;
22    }
23
24    public TableDetails[] getTableDetails() throws com.daffodilwoods.database.resource.DException {
25       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
26       throw new java.lang.UnsupportedOperationException JavaDoc("Method getTableDetails() not yet implemented.");
27    }
28
29    public _Iterator getBaseIterator(ColumnDetails column) throws com.daffodilwoods.database.resource.DException {
30       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
31       throw new java.lang.UnsupportedOperationException JavaDoc("Method getBaseIterator() not yet implemented.");
32    }
33
34    public _KeyColumnInformation[] getKeyColumnInformations() throws com.daffodilwoods.database.resource.DException {
35       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
36       throw new java.lang.UnsupportedOperationException JavaDoc("Method getKeyColumnInformations() not yet implemented.");
37    }
38
39    public Object JavaDoc[] getUniqueColumnReference() throws com.daffodilwoods.database.resource.DException {
40       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
41       throw new java.lang.UnsupportedOperationException JavaDoc("Method getUniqueColumnReference() not yet implemented.");
42    }
43
44    public boolean seek(Object JavaDoc parm1) throws com.daffodilwoods.database.resource.DException {
45       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
46       throw new java.lang.UnsupportedOperationException JavaDoc("Method seek() not yet implemented.");
47    }
48
49    public Object JavaDoc getColumnValues(_Reference parm1) throws com.daffodilwoods.database.resource.DException {
50       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
51       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
52    }
53
54    public void setConditionVariableValue(_Reference[] parm1, Object JavaDoc[] parm2, int parm3) throws com.daffodilwoods.database.resource.DException {
55    }
56
57    public void setIterator(_Iterator parm1) throws com.daffodilwoods.database.resource.DException {
58
59       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
60       throw new java.lang.UnsupportedOperationException JavaDoc("Method setIterator() not yet implemented.");
61    }
62
63    public boolean seekFromTop(_IndexPredicate[] parm1) throws com.daffodilwoods.database.resource.DException {
64       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._IndexIterator method*/
65       throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromTop() not yet implemented.");
66    }
67
68    public boolean seekFromTopRelative(Object JavaDoc parm1) throws com.daffodilwoods.database.resource.DException {
69       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._IndexIterator method*/
70       throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromTopRelative() not yet implemented.");
71    }
72
73    public boolean seekFromBottom(_IndexPredicate[] parm1) throws com.daffodilwoods.database.resource.DException {
74       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._IndexIterator method*/
75       throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromBottom() not yet implemented.");
76    }
77
78    public _OrderCount getOrderCounts() throws com.daffodilwoods.database.resource.DException {
79       throw new java.lang.UnsupportedOperationException JavaDoc("Method getOrderCounts() not yet implemented.");
80    }
81
82    public boolean seekFromBottomRelative(Object JavaDoc parm1) throws com.daffodilwoods.database.resource.DException {
83       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._IndexIterator method*/
84       throw new java.lang.UnsupportedOperationException JavaDoc("Method seekFromBottomRelative() not yet implemented.");
85    }
86
87    public Object JavaDoc getKey() throws com.daffodilwoods.database.resource.DException {
88       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._TableIterator method*/
89       throw new java.lang.UnsupportedOperationException JavaDoc("Method getKey() not yet implemented.");
90    }
91
92    public boolean setTemporaryIterator(TableDetails parm1, _Record parm2) throws com.daffodilwoods.database.resource.DException {
93       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
94       throw new java.lang.UnsupportedOperationException JavaDoc("Method setTemporaryIterator() not yet implemented.");
95    }
96
97    public void reset() {
98       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
99       throw new java.lang.UnsupportedOperationException JavaDoc("Method reset() not yet implemented.");
100    }
101
102    public void addReferences(_Reference[] parm1) throws com.daffodilwoods.database.resource.DException {
103       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
104       throw new java.lang.UnsupportedOperationException JavaDoc("Method addReferences() not yet implemented.");
105    }
106
107    public Object JavaDoc[][] getReferenceAndValuePair() throws com.daffodilwoods.database.resource.DException {
108       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.utils._VariableValues method*/
109       throw new java.lang.UnsupportedOperationException JavaDoc("Method getReferenceAndValuePair() not yet implemented.");
110    }
111
112    public _Record getRecord() throws com.daffodilwoods.database.resource.DException {
113       return iterator.getRecord();
114    }
115
116    public Object JavaDoc getColumnValues() throws com.daffodilwoods.database.resource.DException {
117       return iterator.getColumnValues();
118    }
119
120    public Object JavaDoc getColumnValues(int[] parm1) throws com.daffodilwoods.database.resource.DException {
121       return iterator.getColumnValues(parm1);
122    }
123
124    public boolean previous() throws com.daffodilwoods.database.resource.DException {
125       return iterator.previous();
126    }
127
128    public boolean first() throws com.daffodilwoods.database.resource.DException {
129       return iterator.first();
130    }
131
132    public boolean last() throws com.daffodilwoods.database.resource.DException {
133       return iterator.last();
134    }
135
136    public boolean next() throws com.daffodilwoods.database.resource.DException {
137       return iterator.next();
138    }
139
140    public Object JavaDoc getColumnValues(_Reference[] parm1) throws com.daffodilwoods.database.resource.DException {
141       return null;
142    }
143
144    public void move(Object JavaDoc parm1) throws com.daffodilwoods.database.resource.DException {
145       iterator.move(parm1);
146    }
147
148    public _Order getDefaultOrder() throws com.daffodilwoods.database.resource.DException {
149       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
150       throw new java.lang.UnsupportedOperationException JavaDoc("Method getDefaultOrder() not yet implemented.");
151    }
152
153    public Object JavaDoc[][] getTableCCS() throws DException {
154       throw new java.lang.UnsupportedOperationException JavaDoc("Method getTableCCS() not yet implemented.");
155    }
156
157    public Object JavaDoc getColumnValues(int column) throws DException {
158       /**@todo Implement this com.daffodilwoods.daffodildb.server.datasystem.interfaces._TableIterator method*/
159       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnValues() not yet implemented.");
160    }
161
162    public void setSessionCondition(TableDetails parm1) throws com.daffodilwoods.database.resource.DException {
163       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
164       throw new java.lang.UnsupportedOperationException JavaDoc("Method setSessionCondition() not yet implemented.");
165    }
166
167    public void restoreSessionCondition(TableDetails parm1) throws com.daffodilwoods.database.resource.DException {
168       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
169       throw new java.lang.UnsupportedOperationException JavaDoc("Method restoreSessionCondition() not yet implemented.");
170    }
171
172    public _ExecutionPlan getExecutionPlan() throws DException {
173       return new ExecutionPlan("CursorIterator", null, null, null, null);
174    }
175
176    public void setKeyCount(Object JavaDoc[][] tableAndKeyCount) throws DException {
177       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.dql.interfaces._Iterator method*/
178       throw new java.lang.UnsupportedOperationException JavaDoc("Method setKeyCount() not yet implemented.");
179    }
180
181    public Object JavaDoc getUpdatedEffect(_Reference[] references, Object JavaDoc[] values) throws DException {
182
183       throw new UnsupportedOperationException JavaDoc("getUpdatedEffect() Not Supported");
184    }
185
186    public ExecutionPlanForBrowser getExecutionPlanForBrowser() throws DException {
187       throw new UnsupportedOperationException JavaDoc("Method Not Supported");
188    }
189
190    public _Iterator getBaseIteratorHasRecord(ColumnDetails hasRecordColumn) throws DException {
191       throw new DException("DSE565", new Object JavaDoc[] {""});
192    }
193
194
195 }
196
Popular Tags