1 | /* |
2 | |
3 | Derby - Class org.apache.derby.impl.jdbc.EmbedResultSet169 |
4 | |
5 | Copyright 2005 The Apache Software Foundation or its licensors, as applicable. |
6 | |
7 | Licensed under the Apache License, Version 2.0 (the "License"); |
8 | you may not use this file except in compliance with the License. |
9 | You may obtain a copy of the License at |
10 | |
11 | http://www.apache.org/licenses/LICENSE-2.0 |
12 | |
13 | Unless required by applicable law or agreed to in writing, software |
14 | distributed under the License is distributed on an "AS IS" BASIS, |
15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16 | See the License for the specific language governing permissions and |
17 | limitations under the License. |
18 | |
19 | */ |
20 | |
21 | package org.apache.derby.impl.jdbc; |
22 | |
23 | import org.apache.derby.iapi.sql.ResultSet; |
24 | import java.sql.SQLException; |
25 | |
26 | /** |
27 | * ResultSet implementation for JSR169. |
28 | * Adds no functionality to its (abstract) parent class. |
29 | * If Derby could be compiled against JSR169 that the parent |
30 | * class could be the concrete class for the environment. |
31 | * Just like for the JDBC 2.0 specific classes. |
32 | * Until that is possible (ie. easily downloadable J2ME/CDC/Foundation/JSR169 |
33 | * jar files, this class is required and is only compiled by an optional target. |
34 | <P><B>Supports</B> |
35 | <UL> |
36 | <LI> JSR 169 |
37 | </UL> |
38 | |
39 | */ |
40 | |
41 | public final class EmbedResultSet169 extends EmbedResultSet |
42 | { |
43 | public EmbedResultSet169(EmbedConnection conn, |
44 | ResultSet resultsToWrap, |
45 | boolean forMetaData, |
46 | EmbedStatement stmt, |
47 | boolean isAtomic) |
48 | throws SQLException |
49 | { |
50 | super(conn, resultsToWrap, forMetaData, stmt, isAtomic); |
51 | } |
52 | } |