KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > derby > impl > jdbc > EmbedStatement40


1 /*
2
3    Derby - Class org.apache.derby.impl.jdbc.EmbedStatement40
4
5    Licensed to the Apache Software Foundation (ASF) under one or more
6    contributor license agreements. See the NOTICE file distributed with
7    this work for additional information regarding copyright ownership.
8    The ASF licenses this file to you under the Apache License, Version 2.0
9    (the "License"); you may not use this file except in compliance with
10    the License. You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14    Unless required by applicable law or agreed to in writing, software
15    distributed under the License is distributed on an "AS IS" BASIS,
16    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17    See the License for the specific language governing permissions and
18    limitations under the License.
19
20  */

21
22 package org.apache.derby.impl.jdbc;
23
24 import java.sql.SQLException JavaDoc;
25 import org.apache.derby.iapi.reference.SQLState;
26
27 public class EmbedStatement40 extends EmbedStatement {
28     
29     /**
30      * calls superclass contructor with the parameter passed
31      *
32      * @param connection EmbedConnection object associated with this
33      * statement
34      * @param forMetaData boolean
35      * @param resultSetType int
36      * @param resultSetConcurrency int
37      * @param resultSetHoldability int
38      *
39      */

40     public EmbedStatement40 (EmbedConnection connection, boolean forMetaData,
41                              int resultSetType, int resultSetConcurrency,
42                              int resultSetHoldability) {
43         super(connection,forMetaData,resultSetType,resultSetConcurrency,
44                 resultSetHoldability);
45     }
46     
47     /**
48      * Returns false unless <code>interfaces</code> is implemented
49      *
50      * @param interfaces a Class defining an interface.
51      * @return true if this implements the interface or
52      * directly or indirectly wraps an object
53      * that does.
54      * @throws java.sql.SQLException if an error occurs while determining
55      * whether this is a wrapper for an object
56      * with the given interface.
57      */

58     public boolean isWrapperFor(Class JavaDoc<?> interfaces) throws SQLException JavaDoc {
59         checkStatus();
60         return interfaces.isInstance(this);
61     }
62     
63     /**
64      * Returns <code>this</code> if this class implements the interface
65      *
66      * @param interfaces a Class defining an interface
67      * @return an object that implements the interface
68      * @throws java.sql.SQLExption if no object if found that implements the
69      * interface
70      */

71     public <T> T unwrap(java.lang.Class JavaDoc<T> interfaces)
72     throws SQLException JavaDoc{
73         checkStatus();
74         try {
75             return interfaces.cast(this);
76         } catch (ClassCastException JavaDoc cce) {
77             throw newSQLException(SQLState.UNABLE_TO_UNWRAP,interfaces);
78         }
79     }
80     
81 }
82
Popular Tags