⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 embedcallablestatement169.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*Derby - Class org.apache.derby.impl.jdbc.EmbedCallableStatement169Copyright 2005 The Apache Software Foundation or its licensors, as applicable.Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.*/package org.apache.derby.impl.jdbc;import java.sql.SQLException;/** * CallableStatement implementation for JSR169. * Adds no functionality to its (abstract) parent class. * If Derby could be compiled against JSR169 that the parent * class could be the concrete class for the environment. * Just like for the JDBC 2.0 specific classes. * Until that is possible (ie. easily downloadable J2ME/CDC/Foundation/JSR169 * jar files, this class is required and is only compiled by an optional target. <P><B>Supports</B> <UL> <LI> JSR 169 </UL> */public final class EmbedCallableStatement169 extends EmbedCallableStatement {	public EmbedCallableStatement169(EmbedConnection conn, String sql,			int resultSetType, int resultSetConcurrency,			int resultSetHoldability) throws SQLException {		super(conn, sql, resultSetType, resultSetConcurrency,				resultSetHoldability);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -