1 | /* |
2 | |
3 | Derby - Class org.apache.derby.impl.jdbc.EmbedParameterMetaData30 |
4 | |
5 | Copyright 2002, 2004 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.ParameterValueSet; |
24 | import org.apache.derby.iapi.types.DataTypeDescriptor; |
25 | |
26 | import java.sql.ParameterMetaData; |
27 | |
28 | /** |
29 | * This class implements the ParameterMetaData interface from JDBC3.0 |
30 | * It provides the parameter meta data for callable & prepared statements |
31 | * But note that the bulk of it resides in its parent class. The reason is |
32 | * we want to provide the functionality to the JDKs before JDBC3.0. |
33 | * |
34 | <P><B>Supports</B> |
35 | <UL> |
36 | <LI> JDBC 3.0 - java.sql.ParameterMetaData introduced in JDBC3 |
37 | </UL> |
38 | |
39 | * @see java.sql.ParameterMetaData |
40 | * |
41 | */ |
42 | class EmbedParameterMetaData30 extends org.apache.derby.impl.jdbc.EmbedParameterSetMetaData |
43 | implements ParameterMetaData { |
44 | |
45 | ////////////////////////////////////////////////////////////// |
46 | // |
47 | // CONSTRUCTORS |
48 | // |
49 | ////////////////////////////////////////////////////////////// |
50 | EmbedParameterMetaData30(ParameterValueSet pvs, DataTypeDescriptor[] types) { |
51 | super(pvs, types); |
52 | } |
53 | |
54 | } |
55 | |