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

📄 clob.html

📁 API資料大全
💻 HTML
📖 第 1 页 / 共 2 页
字号:
<!-- ============ FIELD DETAIL =========== --><!-- ========= CONSTRUCTOR DETAIL ======== --><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="length()"><!-- --></A><H3>length</H3><PRE>public long <B>length</B>()            throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Returns the number of characters  in the <code>CLOB</code> value designated by this <code>Clob</code> object.<DD><DL><DT><B>Returns:</B><DD>length of the <code>CLOB</code> in characters<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the length of the <code>CLOB</code><DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><HR><A NAME="getSubString(long, int)"><!-- --></A><H3>getSubString</H3><PRE>public <A HREF="../../java/lang/String.html">String</A> <B>getSubString</B>(long&nbsp;pos,                           int&nbsp;length)                    throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Returns a copy of the specified substring  in the <code>CLOB</code> value designated by this <code>Clob</code> object. The substring begins at position <code>pos</code> and has up to <code>length</code> consecutive characters.<DD><DL><DT><B>Parameters:</B><DD><CODE>pos</CODE> - the first character of the substring to be extracted.            The first character is at position 1.<DD><CODE>length</CODE> - the number of consecutive characters to be copied<DT><B>Returns:</B><DD>a <code>String</code> that is the specified substring in         the <code>CLOB</code> value designated by this <code>Clob</code> object<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the <code>CLOB</code><DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><HR><A NAME="getCharacterStream()"><!-- --></A><H3>getCharacterStream</H3><PRE>public <A HREF="../../java/io/Reader.html">Reader</A> <B>getCharacterStream</B>()                          throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Gets the <code>CLOB</code> value designated by this <code>Clob</code> object as a Unicode stream.<DD><DL><DT><B>Returns:</B><DD>a Unicode stream containing the <code>CLOB</code> data<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the  <code>CLOB</code> value<DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><HR><A NAME="getAsciiStream()"><!-- --></A><H3>getAsciiStream</H3><PRE>public <A HREF="../../java/io/InputStream.html">InputStream</A> <B>getAsciiStream</B>()                           throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Gets the <code>CLOB</code> value designated by this <code>Clob</code> object as a stream of Ascii bytes.<DD><DL><DT><B>Returns:</B><DD>an ascii stream containing the <code>CLOB</code> data<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the  <code>CLOB</code> value<DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><HR><A NAME="position(java.lang.String, long)"><!-- --></A><H3>position</H3><PRE>public long <B>position</B>(<A HREF="../../java/lang/String.html">String</A>&nbsp;searchstr,                     long&nbsp;start)              throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Determines the character position at which the specified substring  <code>searchstr</code> appears in the SQL <code>CLOB</code> value represented by this <code>Clob</code> object.  The search  begins at position <code>start</code>.<DD><DL><DT><B>Parameters:</B><DD><CODE>searchstr</CODE> - the substring for which to search<DD><CODE>start</CODE> - the position at which to begin searching; the first position              is 1<DT><B>Returns:</B><DD>the position at which the substring appears, else -1; the first         position is 1<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the        <code>CLOB</code> value<DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><HR><A NAME="position(java.sql.Clob, long)"><!-- --></A><H3>position</H3><PRE>public long <B>position</B>(<A HREF="../../java/sql/Clob.html">Clob</A>&nbsp;searchstr,                     long&nbsp;start)              throws <A HREF="../../java/sql/SQLException.html">SQLException</A></PRE><DL><DD>Determines the character position at which the specified   <code>Clob</code> object <code>searchstr</code> appears in this  <code>Clob</code> object.  The search begins at position  <code>start</code>.<DD><DL><DT><B>Parameters:</B><DD><CODE>searchstr</CODE> - the <code>Clob</code> object for which to search<DD><CODE>start</CODE> - the position at which to begin searching; the first              position is 1<DT><B>Returns:</B><DD>the position at which the <code>Clob</code> object appears,  else -1; the first position is 1<DT><B>Throws:</B><DD><CODE><A HREF="../../java/sql/SQLException.html">SQLException</A></CODE> - if there is an error accessing the  <code>CLOB</code> value<DT><B>Since: </B><DD>1.2</DD><DT><B>See Also: </B><DD><a href="package-summary.html#2.0 API">What Is in the JDBC 2.0 API</a></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/Clob.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup>&nbsp;2&nbsp;Platform<br>Std.&nbsp;Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../java/sql/CallableStatement.html"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../java/sql/Connection.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="Clob.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY: &nbsp;INNER&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: &nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="http://java.sun.com/products/jdk/1.3/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation  contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road<br>Palo Alto, California, 94303, U.S.A.  All Rights Reserved.</font></BODY></HTML>

⌨️ 快捷键说明

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