Lines Matching defs:Clob

31  * The {@code java.sql.Clob} interface provides methods for setting and
32 * retrieving data in the {@code Clob}, for querying {@code Clob} data length,
33 * for searching for data within the {@code Clob}.
35 public interface Clob {
38 * Gets the value of this {@code Clob} object as an ASCII stream.
41 * {@code Clob} data.
43 * if an error occurs accessing the {@code Clob}.
48 * Gets the data of this {@code Clob} object in a {@code java.io.Reader}.
51 * Clob} data.
53 * if an error occurs accessing the {@code Clob}.
58 * Gets a copy of a specified substring in this {@code Clob}.
61 * the index of the start of the substring in the {@code Clob}.
66 * if an error occurs accessing the {@code Clob}.
71 * Retrieves the number of characters in this {@code Clob} object.
73 * @return a long value with the number of character in this {@code Clob}.
75 * if an error occurs accessing the {@code Clob}.
80 * Retrieves the character position at which a specified {@code Clob} object
81 * appears in this {@code Clob} object.
84 * the specified {@code Clob} to search for.
86 * the position within this {@code Clob} to start the search
88 * Clob} occurs within this {@code Clob}.
90 * if an error occurs accessing the {@code Clob}.
92 public long position(Clob searchstr, long start) throws SQLException;
96 * in this {@code Clob} object.
102 * Clob}.
104 * occurs within this {@code Clob}.
106 * if an error occurs accessing the {@code Clob}.
112 * {@code Clob} object, starting at specified position.
117 * this {@code Clob}.
119 * if an error occurs accessing the {@code Clob}.
125 * characters to this {@code Clob} object, at a specified position.
130 * {@code Clob}.
132 * if an error occurs accessing the {@code Clob}.
137 * Writes a given Java String to this {@code Clob} object at a specified
146 * if an error occurs accessing the {@code Clob}.
152 * character offset, to this {@code Clob}.
164 * if an error occurs accessing the {@code Clob}.
170 * Truncates this {@code Clob} after the specified number of characters.
174 * truncate this {@code Clob}.
176 * if an error occurs accessing the {@code Clob}.