亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? clob.java

?? java數據庫源代碼 請看看啊 提點寶貴的意見
?? JAVA
字號:
/* * @(#)Clob.java	1.28 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.sql; /** * The mapping in the Java<sup><font size=-2>TM</font></sup> programming language  * for the SQL <code>CLOB</code> type. * An SQL <code>CLOB</code> is a built-in type * that stores a Character Large Object as a column value in a row of * a database table. * By default drivers implement a <code>Clob</code> object using an SQL * <code>locator(CLOB)</code>, which means that a <code>Clob</code> object  * contains a logical pointer to the SQL <code>CLOB</code> data rather than * the data itself. A <code>Clob</code> object is valid for the duration * of the transaction in which it was created. * <P>The <code>Clob</code> interface provides methods for getting the * length of an SQL <code>CLOB</code> (Character Large Object) value, * for materializing a <code>CLOB</code> value on the client, and for * searching for a substring or <code>CLOB</code> object within a * <code>CLOB</code> value. * Methods in the interfaces {@link ResultSet}, * {@link CallableStatement}, and {@link PreparedStatement}, such as * <code>getClob</code> and <code>setClob</code> allow a programmer to * access an SQL <code>CLOB</code> value.  In addition, this interface * has methods for updating a <code>CLOB</code> value. *  * @since 1.2 */public interface Clob {  /**   * Retrieves the number of characters    * in the <code>CLOB</code> value   * designated by this <code>Clob</code> object.   *   * @return length of the <code>CLOB</code> in characters   * @exception SQLException if there is an error accessing the   *            length of the <code>CLOB</code> value   * @since 1.2   */  long length() throws SQLException;  /**   * Retrieves 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.   *   * @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 <code>String</code> that is the specified substring in   *         the <code>CLOB</code> value designated by this <code>Clob</code> object   * @exception SQLException if there is an error accessing the   *            <code>CLOB</code> value   * @since 1.2   */  String getSubString(long pos, int length) throws SQLException;  /**   * Retrieves the <code>CLOB</code> value designated by this <code>Clob</code>   * object as a <code>java.io.Reader</code> object (or as a stream of   * characters).   *   * @return a <code>java.io.Reader</code> object containing the    *         <code>CLOB</code> data   * @exception SQLException if there is an error accessing the    *            <code>CLOB</code> value   * @see #setCharacterStream   * @since 1.2   */  java.io.Reader getCharacterStream() throws SQLException;  /**   * Retrieves the <code>CLOB</code> value designated by this <code>Clob</code>   * object as an ascii stream.   *   * @return a <code>java.io.InputStream</code> object containing the    *         <code>CLOB</code> data   * @exception SQLException if there is an error accessing the    *            <code>CLOB</code> value   * @see #setAsciiStream   * @since 1.2   */  java.io.InputStream getAsciiStream() throws SQLException;  /**    * Retrieves 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>.   *   * @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          *            <code>CLOB</code> value   * @since 1.2   */  long position(String searchstr, long start) throws SQLException;  /**    * Retrieves 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>.   *   * @param searchstr the <code>Clob</code> 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 <code>Clob</code> object appears    *              or -1 if it is not present; the first position is 1   * @exception SQLException if there is an error accessing the    *            <code>CLOB</code> value   * @since 1.2   */  long position(Clob searchstr, long start) throws SQLException;    //---------------------------- jdbc 3.0 -----------------------------------    /**     * Writes the given Java <code>String</code> to the <code>CLOB</code>     * value that this <code>Clob</code> object designates at the position      * <code>pos</code>.     *     * @param pos the position at which to start writing to the <code>CLOB</code>     *         value that this <code>Clob</code> object represents     * @param str the string to be written to the <code>CLOB</code>     *        value that this <code>Clob</code> designates     * @return the number of characters written     * @exception SQLException if there is an error accessing the      *            <code>CLOB</code> value     *     * @since 1.4     */    int setString(long pos, String str) throws SQLException;    /**     * Writes <code>len</code> characters of <code>str</code>, starting      * at character <code>offset</code>, to the <code>CLOB</code> value     * that this <code>Clob</code> represents.     *     * @param pos the position at which to start writing to this     *        <code>CLOB</code> object     * @param str the string to be written to the <code>CLOB</code>      *        value that this <code>Clob</code> object represents     * @param offset the offset into <code>str</code> 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      *            <code>CLOB</code> value     *     * @since 1.4     */    int setString(long pos, String str, int offset, int len) throws SQLException;    /**     * Retrieves a stream to be used to write Ascii characters to the     * <code>CLOB</code> value that this <code>Clob</code> object represents,      * starting at position <code>pos</code>.     *     * @param pos the position at which to start writing to this     *        <code>CLOB</code> object     * @return the stream to which ASCII encoded characters can be written     * @exception SQLException if there is an error accessing the      *            <code>CLOB</code> value     * @see #getAsciiStream     *     * @since 1.4     */    java.io.OutputStream setAsciiStream(long pos) throws SQLException;    /**     * Retrieves a stream to be used to write a stream of Unicode characters      * to the <code>CLOB</code> value that this <code>Clob</code> object     * represents, at position <code>pos</code>.     *     * @param  pos the position at which to start writing to the     *        <code>CLOB</code> value     *     * @return a stream to which Unicode encoded characters can be written     * @exception SQLException if there is an error accessing the      *            <code>CLOB</code> value     * @see #getCharacterStream     *     * @since 1.4     */    java.io.Writer setCharacterStream(long pos) throws SQLException;    /**     * Truncates the <code>CLOB</code> value that this <code>Clob</code>      * designates to have a length of <code>len</code>      * characters.     * @param len the length, in bytes, to which the <code>CLOB</code> value     *        should be truncated     * @exception SQLException if there is an error accessing the      *            <code>CLOB</code> value     *     * @since 1.4     */    void truncate(long len) throws SQLException;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产人久久人人人人爽| 欧美精品成人一区二区三区四区| 亚洲午夜影视影院在线观看| 国产精品国产精品国产专区不蜜| 国产欧美日产一区| 国产欧美一区视频| 日韩理论片网站| 亚洲精品国产a久久久久久| 亚洲免费在线播放| 午夜精品免费在线观看| 日韩精品亚洲一区| 国内欧美视频一区二区 | 91原创在线视频| 99久久国产综合精品色伊| 99天天综合性| 一本色道久久综合狠狠躁的推荐| 色综合色狠狠综合色| 欧美日韩国产免费| 欧美tickling网站挠脚心| 日本一区二区三区在线不卡| 成人免费在线观看入口| 亚洲另类在线视频| 一区二区三区精品久久久| 亚洲v中文字幕| 久久精品国产亚洲一区二区三区| 国产成人精品免费在线| 在线一区二区三区四区五区 | 国产高清久久久久| 播五月开心婷婷综合| 在线观看亚洲成人| 欧美电影免费观看高清完整版在| 国产欧美精品一区二区三区四区| 亚洲精品你懂的| 精品中文av资源站在线观看| 成人网在线播放| 在线不卡中文字幕| 中文字幕精品一区二区精品绿巨人 | 欧美日韩国产综合久久| 精品黑人一区二区三区久久| 亚洲欧美在线观看| 免费在线视频一区| 91视频国产资源| 亚洲精品一区二区三区香蕉| 亚洲伦理在线精品| 精品夜夜嗨av一区二区三区| 在线看日韩精品电影| 久久久久久久久久久久电影| 一区二区三区久久| 成人av电影在线| 欧美成人精品1314www| 一区二区三区四区在线播放 | 夜夜嗨av一区二区三区四季av| 美腿丝袜亚洲色图| 欧美亚洲日本一区| 综合欧美亚洲日本| 国产成人精品在线看| 91精品国产色综合久久不卡蜜臀 | 精品一区免费av| 欧美唯美清纯偷拍| 中文字幕中文乱码欧美一区二区| 麻豆国产精品官网| 欧美日韩成人综合在线一区二区| 国产精品激情偷乱一区二区∴| 久久99热99| 欧美一区二区在线免费观看| 午夜久久久久久| 欧美日韩一区成人| 亚洲国产色一区| 色婷婷狠狠综合| 亚洲日本一区二区| 99精品视频中文字幕| 中文字幕电影一区| 成人爽a毛片一区二区免费| 久久综合色鬼综合色| 国产美女精品在线| 国产日韩三级在线| 丰满岳乱妇一区二区三区| 久久精品欧美一区二区三区不卡| 久久99久久99精品免视看婷婷| 日韩欧美国产一二三区| 久久91精品久久久久久秒播| 欧美成人激情免费网| 另类小说一区二区三区| 亚洲精品在线电影| 国产成人在线网站| 综合久久综合久久| 在线观看欧美精品| 蜜臀av性久久久久蜜臀aⅴ流畅| 91精品国产综合久久久久| 久久狠狠亚洲综合| 国产欧美一区二区三区在线老狼 | 一区二区三区蜜桃网| 在线观看不卡一区| 亚洲国产欧美日韩另类综合| 欧美精品日韩一本| 蜜桃av噜噜一区| 日本一区二区在线不卡| 色婷婷激情综合| 免费精品视频在线| 国产精品网曝门| 欧美日韩你懂的| 精品一区二区三区的国产在线播放| 久久久久久久久伊人| 日本高清无吗v一区| 首页国产丝袜综合| 国产午夜亚洲精品不卡| 色呦呦国产精品| 蜜臀av一级做a爰片久久| 中文字幕不卡三区| 欧美肥胖老妇做爰| 成人免费视频一区| 天天综合色天天综合色h| 国产婷婷色一区二区三区在线| 91在线你懂得| 久久91精品国产91久久小草 | 91精品国产91热久久久做人人| 狠狠色综合日日| 一区二区三区蜜桃| 国产视频一区二区在线观看| 91精彩视频在线观看| 国产在线精品国自产拍免费| 一区二区三区毛片| 欧美国产精品一区二区三区| 4438x成人网最大色成网站| 国产成人免费高清| 秋霞午夜鲁丝一区二区老狼| 国产精品素人一区二区| 91精品国产综合久久精品app| 成人精品视频.| 久热成人在线视频| 亚洲aⅴ怡春院| 亚洲欧美日韩国产综合在线| 久久久久久影视| 日韩一区二区三区高清免费看看| 91久久免费观看| 成人av中文字幕| 国产精品88888| 久久精品国产99| 日韩成人免费在线| 亚洲福中文字幕伊人影院| 亚洲欧美一区二区三区极速播放 | 亚洲色图在线播放| 2023国产精品自拍| 日韩欧美国产一区二区在线播放 | 国产精品亚洲一区二区三区妖精 | 日韩成人伦理电影在线观看| 一区二区三区四区在线播放 | 欧美sm美女调教| 91精品国产综合久久精品| 欧美日精品一区视频| 色婷婷综合久久久久中文| 91麻豆免费看片| 99视频超级精品| 91视频在线观看免费| 99久久久久免费精品国产 | 青青青伊人色综合久久| 视频一区视频二区在线观看| 日韩国产欧美在线视频| 日韩精品亚洲一区二区三区免费| 性做久久久久久久免费看| 日韩国产高清影视| 蜜臀久久99精品久久久画质超高清 | 亚洲男人都懂的| 最好看的中文字幕久久| 亚洲天堂a在线| 午夜精品免费在线| 蜜臀av一级做a爰片久久| 精品在线一区二区| 国产精品88888| 一本到不卡精品视频在线观看| 91官网在线观看| 日韩视频123| 国产女人水真多18毛片18精品视频| 国产精品天美传媒沈樵| 一区二区三区欧美日韩| 日韩电影免费一区| 国产精品亚洲人在线观看| 91在线porny国产在线看| 欧美日韩久久久| 久久综合狠狠综合| 亚洲精品日韩一| 美日韩一级片在线观看| 成人高清av在线| 欧美蜜桃一区二区三区| 欧美激情艳妇裸体舞| 亚洲国产成人av| 国产精品羞羞答答xxdd| 欧美系列在线观看| 久久综合999| 亚洲福利视频一区| 国产高清精品网站| 欧美色网一区二区| 国产日韩亚洲欧美综合| 天堂在线一区二区| aaa亚洲精品一二三区| 欧美成人精品高清在线播放 | 欧美酷刑日本凌虐凌虐| 国产亚洲欧美中文| 日韩国产高清在线| 一本大道av伊人久久综合|