01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.harmony.sql.internal.rowset;
18:
19: import java.sql.SQLException;
20: import java.sql.Savepoint;
21:
22: import javax.sql.rowset.JdbcRowSet;
23: import javax.sql.rowset.RowSetWarning;
24:
25: import org.apache.harmony.luni.util.NotImplementedException;
26:
27: public class JdbcRowSetImpl extends AbstractRowSetImpl implements
28: JdbcRowSet {
29:
30: public void commit() throws SQLException {
31: throw new NotImplementedException();
32: }
33:
34: public boolean getAutoCommit() throws SQLException {
35: throw new NotImplementedException();
36: }
37:
38: public RowSetWarning getRowSetWarnings() throws SQLException {
39: throw new NotImplementedException();
40: }
41:
42: public void rollback() throws SQLException {
43: throw new NotImplementedException();
44: }
45:
46: public void rollback(Savepoint s) throws SQLException {
47: throw new NotImplementedException();
48: }
49:
50: public void setAutoCommit(boolean autoCommit) throws SQLException {
51: throw new NotImplementedException();
52: }
53:
54: public int[] getMatchColumnIndexes() throws SQLException {
55: throw new NotImplementedException();
56: }
57:
58: public String[] getMatchColumnNames() throws SQLException {
59: throw new NotImplementedException();
60: }
61:
62: public void setMatchColumn(int columnIdx) throws SQLException {
63: throw new NotImplementedException();
64: }
65:
66: public void setMatchColumn(int[] columnIdxes) throws SQLException {
67: throw new NotImplementedException();
68: }
69:
70: public void setMatchColumn(String columnName) throws SQLException {
71: throw new NotImplementedException();
72: }
73:
74: public void setMatchColumn(String[] columnNames)
75: throws SQLException {
76: throw new NotImplementedException();
77: }
78:
79: public void unsetMatchColumn(int columnIdx) throws SQLException {
80: throw new NotImplementedException();
81: }
82:
83: public void unsetMatchColumn(int[] columnIdxes) throws SQLException {
84: throw new NotImplementedException();
85: }
86:
87: public void unsetMatchColumn(String columnName) throws SQLException {
88: throw new NotImplementedException();
89: }
90:
91: public void unsetMatchColumn(String[] columnName)
92: throws SQLException {
93: throw new NotImplementedException();
94: }
95:
96: }
|