com.aceql.jdbc.commons.main.abstracts.AbstractClob Maven / Gradle / Ivy
Show all versions of aceql-http-client-jdbc-driver Show documentation
/*
* This file is part of AceQL JDBC Driver.
* AceQL JDBC Driver: Remote JDBC access over HTTP with AceQL HTTP.
* Copyright (c) 2023, KawanSoft SAS
* (http://www.kawansoft.com). All rights reserved.
*
* 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.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 com.aceql.jdbc.commons.main.abstracts;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import java.sql.Clob;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
/**
* Clob Wrapper.
* Implements all the Connection methods. Usage is exactly the same as a Clob.
*/
public abstract class AbstractClob implements Clob {
/** SQL Clob container. */
private Clob clob;
/**
* Constructor
*
* @param clob
* actual SQL/JDBC Clob in use to wrap.
*/
public AbstractClob(Clob clob) {
this.clob = clob;
}
/**
* Retrieves the number of characters in the CLOB
value
* designated by this Clob
object.
*
* @return length of the CLOB
in characters
* @exception SQLException
* if there is an error accessing the length of the
* CLOB
value
* @since 1.2
*/
@Override
public long length() throws SQLException {
return this.clob.length();
}
/**
* Retrieves a copy of the specified substring in the CLOB
* value designated by this Clob
object. The substring begins
* at position pos
and has up to length
* consecutive characters.
*
* @param pos
* the first character of the substring to be extracted. The
* first character is at position 1.
* @param length
* the number of consecutive characters to be copied
* @return a String
that is the specified substring in the
* CLOB
value designated by this Clob
* object
* @exception SQLException
* if there is an error accessing the CLOB
value
* @since 1.2
*/
@Override
public String getSubString(long pos, int length) throws SQLException {
return this.clob.getSubString(pos, length);
}
/**
* Retrieves the CLOB
value designated by this
* Clob
object as a java.io.Reader
object (or as a
* stream of characters).
*
* @return a java.io.Reader
object containing the
* CLOB
data
* @exception SQLException
* if there is an error accessing the CLOB
value
* @see #setCharacterStream
* @since 1.2
*/
@Override
public Reader getCharacterStream() throws SQLException {
return this.clob.getCharacterStream();
}
/**
* Retrieves the CLOB
value designated by this
* Clob
object as an ascii stream.
*
* @return a java.io.InputStream
object containing the
* CLOB
data
* @exception SQLException
* if there is an error accessing the CLOB
value
* @see #setAsciiStream
* @since 1.2
*/
@Override
public InputStream getAsciiStream() throws SQLException {
return this.clob.getAsciiStream();
}
/**
* Retrieves the character position at which the specified substring
* searchstr
appears in the SQL CLOB
value
* represented by this Clob
object. The search begins at
* position start
.
*
* @param searchstr
* the substring for which to search
* @param start
* the position at which to begin searching; the first position
* is 1
* @return the position at which the substring appears or -1 if it is not
* present; the first position is 1
* @exception SQLException
* if there is an error accessing the CLOB
value
* @since 1.2
*/
@Override
public long position(String searchstr, long start) throws SQLException {
return this.clob.position(searchstr, start);
}
/**
* Retrieves the character position at which the specified Clob
* object searchstr
appears in this Clob
object.
* The search begins at position start
.
*
* @param searchstr
* the Clob
object for which to search
* @param start
* the position at which to begin searching; the first position
* is 1
* @return the position at which the Clob
object appears or -1
* if it is not present; the first position is 1
* @exception SQLException
* if there is an error accessing the CLOB
value
* @since 1.2
*/
@Override
public long position(Clob searchstr, long start) throws SQLException {
return this.clob.position(searchstr, start);
}
// ---------------------------- jdbc 3.0 -----------------------------------
/**
* Writes the given Java String
to the CLOB
value
* that this Clob
object designates at the position
* pos
.
*
* @param pos
* the position at which to start writing to the
* CLOB
value that this Clob
object
* represents
* @param str
* the string to be written to the CLOB
value that
* this Clob
designates
* @return the number of characters written
* @exception SQLException
* if there is an error accessing the CLOB
value
*
* @since 1.4
*/
@Override
public int setString(long pos, String str) throws SQLException {
return this.clob.setString(pos, str);
}
/**
* Writes len
characters of str
, starting at
* character offset
, to the CLOB
value that this
* Clob
represents.
*
* @param pos
* the position at which to start writing to this
* CLOB
object
* @param str
* the string to be written to the CLOB
value that
* this Clob
object represents
* @param offset
* the offset into str
to start reading the
* characters to be written
* @param len
* the number of characters to be written
* @return the number of characters written
* @exception SQLException
* if there is an error accessing the CLOB
value
*
* @since 1.4
*/
@Override
public int setString(long pos, String str, int offset, int len)
throws SQLException {
return this.clob.setString(pos, str, offset, len);
}
/**
* Retrieves a stream to be used to write Ascii characters to the
* CLOB
value that this Clob
object represents,
* starting at position pos
.
*
* @param pos
* the position at which to start writing to this
* CLOB
object
* @return the stream to which ASCII encoded characters can be written
* @exception SQLException
* if there is an error accessing the CLOB
value
* @see #getAsciiStream
*
* @since 1.4
*/
@Override
public OutputStream setAsciiStream(long pos) throws SQLException {
return this.clob.setAsciiStream(pos);
}
/**
* Retrieves a stream to be used to write a stream of Unicode characters to
* the CLOB
value that this Clob
object
* represents, at position pos
.
*
* @param pos
* the position at which to start writing to the
* CLOB
value
*
* @return a stream to which Unicode encoded characters can be written
* @exception SQLException
* if there is an error accessing the CLOB
value
* @see #getCharacterStream
*
* @since 1.4
*/
@Override
public Writer setCharacterStream(long pos) throws SQLException {
return this.clob.setCharacterStream(pos);
}
/**
* Truncates the CLOB
value that this Clob
* designates to have a length of len
characters.
*
* @param len
* the length, in bytes, to which the CLOB
value
* should be truncated
* @exception SQLException
* if there is an error accessing the CLOB
value
*
* @since 1.4
*/
@Override
public void truncate(long len) throws SQLException {
this.clob.truncate(len);
}
/**
* This method frees the Clob
object and releases the resources
* the resources that it holds. The object is invalid once the
* free
method is called.
*
* After free
has been called, any attempt to invoke a method
* other than free
will result in a SQLException
* being thrown. If free
is called multiple times, the
* subsequent calls to free
are treated as a no-op.
*
*
* @throws SQLException
* if an error occurs releasing the Clob's resources
*
* @exception SQLFeatureNotSupportedException
* if the JDBC driver does not support this method
* @since 1.6
*/
@Override
public void free() throws SQLException {
this.clob.free();
}
/**
* Returns a Reader
object that contains a partial
* Clob
value, starting with the character specified by pos,
* which is length characters in length.
*
* @param pos
* the offset to the first character of the partial value to be
* retrieved. The first character in the Clob is at position 1.
* @param length
* the length in characters of the partial value to be retrieved.
* @return Reader
through which the partial Clob
* value can be read.
* @throws SQLException
* if pos is less than 1 or if pos is greater than the number of
* characters in the Clob
or if pos + length is
* greater than the number of characters in the
* Clob
*
* @exception SQLFeatureNotSupportedException
* if the JDBC driver does not support this method
* @since 1.6
*/
@Override
public Reader getCharacterStream(long pos, long length)
throws SQLException, SQLFeatureNotSupportedException {
return this.clob.getCharacterStream(pos, length);
}
}