BrokeredPreparedStatement40.java

Index Score
org.apache.derby.iapi.jdbc
Apache Derby

View: Reasons, Metrics, Source Code

These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.

MetricDescription
/* Derby - Class org.apache.derby.iapi.jdbc.BrokeredPreparedStatement40 Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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.0 Unless required by applicable law or agreed to in writing, software distributed 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 and limitations under the License. */ package org.apache.derby.iapi.jdbc; import java.io.InputStream; import java.io.Reader; import java.sql.NClob; import java.sql.RowId; import java.sql.SQLException; import java.sql.SQLXML; import org.apache.derby.impl.jdbc.Util; import org.apache.derby.iapi.reference.SQLState; public class BrokeredPreparedStatement40 extends BrokeredPreparedStatement30{ public BrokeredPreparedStatement40(BrokeredStatementControl control, String sql, Object generatedKeys) throws SQLException { super(control, sql,generatedKeys); } public void setRowId(int parameterIndex, RowId x) throws SQLException{ getPreparedStatement().setRowId (parameterIndex, x); } public void setNString(int index, String value) throws SQLException{ getPreparedStatement().setNString (index, value); } public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException { getPreparedStatement().setNCharacterStream(parameterIndex, value); } public void setNCharacterStream(int index, Reader value, long length) throws SQLException{ getPreparedStatement().setNCharacterStream (index, value, length); } public void setNClob(int index, NClob value) throws SQLException{ getPreparedStatement().setNClob (index, value); } public void setClob(int parameterIndex, Reader reader, long length) throws SQLException{ getPreparedStatement().setClob (parameterIndex, reader, length); } public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException{ getPreparedStatement().setBlob (parameterIndex, inputStream, length); } public final void setNClob(int parameterIndex, Reader reader) throws SQLException { getPreparedStatement().setNClob(parameterIndex, reader); } public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException{ getPreparedStatement().setNClob (parameterIndex, reader, length); } public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException{ getPreparedStatement().setSQLXML (parameterIndex, xmlObject); } /** * Checks if the statement is closed. * * @return <code>true</code> if the statement is closed, * <code>false</code> otherwise * @exception SQLException if an error occurs */ public final boolean isClosed() throws SQLException { return getPreparedStatement().isClosed(); } /** * Returns <code>this</code> if this class implements the interface * * @param interfaces a Class defining an interface * @return an object that implements the interface * @throws java.sql.SQLExption if no object if found that implements the * interface */ public <T> T unwrap(java.lang.Class<T> interfaces) throws SQLException{ checkIfClosed(); //Derby does not implement non-standard methods on //JDBC objects try { return interfaces.cast(this); } catch (ClassCastException cce) { throw Util.generateCsSQLException(SQLState.UNABLE_TO_UNWRAP, interfaces); } } /** * Forwards to the real PreparedStatement. * @return true if the underlying PreparedStatement is poolable, * false otherwise. * @throws SQLException if the forwarding call fails. */ public boolean isPoolable() throws SQLException { return getStatement().isPoolable(); } /** * Forwards to the real PreparedStatement. * @param poolable the new value for the poolable hint. * @throws SQLException if the forwarding call fails. */ public void setPoolable(boolean poolable) throws SQLException { getStatement().setPoolable(poolable); } /** * Sets the designated parameter to the given input stream. * * @param parameterIndex the first parameter is 1, the second is 2, ... * @param x the Java input stream that contains the ASCII parameter value * @throws SQLException if a database access error occurs or this method is * called on a closed <code>PreparedStatement</code> */ public final void setAsciiStream(int parameterIndex, InputStream x) throws SQLException { getPreparedStatement().setAsciiStream(parameterIndex, x); } /** * Sets the designated parameter to the given input stream, which will have * the specified number of bytes. * * @param parameterIndex the first parameter is 1, the second is 2, ... * @param x the java input stream which contains the ASCII parameter value * @param length the number of bytes in the stream * @exception SQLException thrown on failure. * */ public final void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException { getPreparedStatement().setAsciiStream(parameterIndex,x,length); } /** * Sets the designated parameter to the given input stream, which will have * the specified number of bytes. * * @param parameterIndex the first parameter is 1, the second is 2, ... * @param x the java input stream which contains the binary parameter value * @param length the number of bytes in the stream * @exception SQLException thrown on failure. * */ public final void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException { getPreparedStatement().setBinaryStream(parameterIndex,x,length); } /** * Sets the designated parameter to a <code>InputStream</code> object. * This method differs from the <code>setBinaryStream(int, InputStream) * </code> method because it informs the driver that the parameter value * should be sent to the server as a <code>BLOB</code>. * * @param inputStream an object that contains the data to set the parameter * value to. * @throws SQLException if a database access error occurs, this method is * called on a closed <code>PreparedStatement</code> */ public final void setBlob(int parameterIndex, InputStream inputStream) throws SQLException { getPreparedStatement().setBlob(parameterIndex, inputStream); } /** * Sets the designated parameter to the given Reader, which will have * the specified number of bytes. * * @param parameterIndex the first parameter is 1, the second is 2, ... * @param x the java Reader which contains the UNICODE value * @param length the number of bytes in the stream * @exception SQLException thrown on failure. * */ public final void setCharacterStream(int parameterIndex, Reader x, long length) throws SQLException { getPreparedStatement().setCharacterStream(parameterIndex,x,length); } /** * Sets the designated parameter to a <code>Reader</code> object. * This method differs from the <code>setCharacterStream(int,Reader)</code> * method because it informs the driver that the parameter value should be * sent to the server as a <code>CLOB</code>. * * @param parameterIndex the first parameter is 1, the second is 2, ... * @param reader an object that contains the data to set the parameter * value to. * @throws SQLException if a database access error occurs, this method is * called on a closed PreparedStatement */ public final void setClob(int parameterIndex, Reader reader) throws SQLException { getPreparedStatement().setClob(parameterIndex, reader); } }

The table below shows all metrics for BrokeredPreparedStatement40.java.

MetricValueDescription