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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? simpleresultset.java

?? 非常棒的java數(shù)據(jù)庫(kù)
?? JAVA
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
     * @return the value
     */
    public long getLong(String columnName) throws SQLException {
        return getLong(findColumn(columnName));
    }

    /**
     * Returns the value as a short.
     *
     * @return the value
     */
    public short getShort(String columnName) throws SQLException {
        return getShort(findColumn(columnName));
    }

    /**
     * Returns the value as a boolean.
     *
     * @return the value
     */
    public boolean getBoolean(String columnName) throws SQLException {
        return getBoolean(findColumn(columnName));
    }

    /**
     * Returns the value as a byte array.
     *
     * @return the value
     */
    public byte[] getBytes(String columnName) throws SQLException {
        return getBytes(findColumn(columnName));
    }

    /**
     * Returns the value as a java.math.BigDecimal.
     *
     * @return the value
     */
    public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
        Object o = get(columnIndex);
        if (o != null && !(o instanceof BigDecimal)) {
            o = new BigDecimal(o.toString());
        }
        return (BigDecimal) o;
    }

    /**
     * Returns the value as an java.sql.Date.
     *
     * @return the value
     */
    public Date getDate(int columnIndex) throws SQLException {
        return (Date) get(columnIndex);
    }

    /**
     * Returns a reference to itself.
     *
     * @return this
     */
    public ResultSetMetaData getMetaData() throws SQLException {
        return this;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public SQLWarning getWarnings() throws SQLException {
        return null;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public Statement getStatement() throws SQLException {
        return null;
    }

    /**
     * Returns the value as an java.sql.Time.
     *
     * @return the value
     */
    public Time getTime(int columnIndex) throws SQLException {
        return (Time) get(columnIndex);
    }

    /**
     * Returns the value as an java.sql.Timestamp.
     *
     * @return the value
     */
    public Timestamp getTimestamp(int columnIndex) throws SQLException {
        return (Timestamp) get(columnIndex);
    }
    
    /**
     * Returns the value as a java.sql.Array.
     *
     * @return the value
     */
    public Array getArray(int columnIndex) throws SQLException {
        return new SimpleArray((Object[]) get(columnIndex));
    }

    /**
     * Returns the value as an Object.
     *
     * @return the value
     */
    public Object getObject(String columnName) throws SQLException {
        return getObject(findColumn(columnName));
    }

    /**
     * Returns the value as a String.
     *
     * @return the value
     */
    public String getString(String columnName) throws SQLException {
        return getString(findColumn(columnName));
    }

    /**
     * Returns the value as a java.math.BigDecimal.
     *
     * @return the value
     */
    public BigDecimal getBigDecimal(String columnName) throws SQLException {
        return getBigDecimal(findColumn(columnName));
    }

    /**
     * Returns the value as a java.sql.Date.
     *
     * @return the value
     */
    public Date getDate(String columnName) throws SQLException {
        return getDate(findColumn(columnName));
    }

    /**
     * Returns the value as a java.sql.Time.
     *
     * @return the value
     */
    public Time getTime(String columnName) throws SQLException {
        return getTime(findColumn(columnName));
    }

    /**
     * Returns the value as a java.sql.Timestamp.
     *
     * @return the value
     */
    public Timestamp getTimestamp(String columnName) throws SQLException {
        return getTimestamp(findColumn(columnName));
    }
    
    /**
     * Returns the value as a java.sql.Array.
     *
     * @return the value
     */
    public Array getArray(String columnName) throws SQLException {
        return getArray(findColumn(columnName));
    }
    
    
    // ---- result set meta data ---------------------------------------------

    /**
     * Returns the column count.
     *
     * @return the column count
     */
    public int getColumnCount() throws SQLException {
        return columns.size();
    }

    /**
     * Returns 15.
     *
     * @return 15
     */
    public int getColumnDisplaySize(int columnIndex) throws SQLException {
        return 15;
    }

    /**
     * Returns the SQL type.
     *
     * @return the SQL type
     */
    public int getColumnType(int columnIndex) throws SQLException {
        return getColumn(columnIndex - 1).sqlType;
    }

    /**
     * Returns the precision.
     *
     * @return the precision
     */
    public int getPrecision(int columnIndex) throws SQLException {
        return getColumn(columnIndex - 1).precision;
    }

    /**
     * Returns the scale.
     *
     * @return the scale
     */
    public int getScale(int columnIndex) throws SQLException {
        return getColumn(columnIndex - 1).scale;
    }

    /**
     * Returns ResultSetMetaData.columnNullableUnknown.
     *
     * @return columnNullableUnknown
     */
    public int isNullable(int columnIndex) throws SQLException {
        return ResultSetMetaData.columnNullableUnknown;
    }

    /**
     * Returns false.
     *
     * @return false
     */
    public boolean isAutoIncrement(int columnIndex) throws SQLException {
        return false;
    }

    /**
     * Returns true.
     *
     * @return true
     */
    public boolean isCaseSensitive(int columnIndex) throws SQLException {
        return true;
    }

    /**
     * Returns false.
     *
     * @return false
     */
    public boolean isCurrency(int columnIndex) throws SQLException {
        return false;
    }

    /**
     * Returns false.
     *
     * @return false
     */
    public boolean isDefinitelyWritable(int columnIndex) throws SQLException {
        return false;
    }

    /**
     * Returns true.
     *
     * @return true
     */
    public boolean isReadOnly(int columnIndex) throws SQLException {
        return true;
    }

    /**
     * Returns true.
     *
     * @return true
     */
    public boolean isSearchable(int columnIndex) throws SQLException {
        return true;
    }

    /**
     * Returns true.
     *
     * @return true
     */
    public boolean isSigned(int columnIndex) throws SQLException {
        return true;
    }

    /**
     * Returns false.
     *
     * @return false
     */
    public boolean isWritable(int columnIndex) throws SQLException {
        return false;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public String getCatalogName(int columnIndex) throws SQLException {
        return null;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public String getColumnClassName(int columnIndex) throws SQLException {
        return null;
    }

    /**
     * Returns the column name.
     *
     * @return the column name
     */
    public String getColumnLabel(int columnIndex) throws SQLException {
        return getColumn(columnIndex - 1).name;
    }

    /**
     * Returns the column name.
     *
     * @return the column name
     */
    public String getColumnName(int columnIndex) throws SQLException {
        return getColumnLabel(columnIndex);
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public String getColumnTypeName(int columnIndex) throws SQLException {
        return null;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public String getSchemaName(int columnIndex) throws SQLException {
        return null;
    }

    /**
     * Returns null.
     *
     * @return null
     */
    public String getTableName(int columnIndex) throws SQLException {
        return null;
    }

    // ---- unsupported / result set ---------------------------------------------

    /** 
     * INTERNAL 
     */
    public void clearWarnings() throws SQLException {
    }

    /** 
     * INTERNAL 
     */
    public void afterLast() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void cancelRowUpdates() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateNull(String columnName) throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void deleteRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void insertRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void moveToCurrentRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void moveToInsertRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void refreshRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public void updateRow() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean first() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean isAfterLast() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean isBeforeFirst() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean isFirst() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean isLast() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean last() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean previous() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean rowDeleted() throws SQLException {
        throw getUnsupportedException();
    }

    /** 
     * INTERNAL 
     */
    public boolean rowInserted() throws SQLException {
        throw getUnsupportedException();
    }

    /** 

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本高清dvd不卡在线观看| 一区二区视频在线| 一区二区三区中文在线| 欧美一区二区私人影院日本| 污片在线观看一区二区| 4438x亚洲最大成人网| 日韩av电影免费观看高清完整版 | 91影视在线播放| 亚洲精品视频在线| 精品日本一线二线三线不卡| 韩国v欧美v亚洲v日本v| 久久久精品国产免大香伊| 床上的激情91.| 亚洲一区免费视频| 日韩一区二区三| 国产成人亚洲精品青草天美| 成人欧美一区二区三区在线播放| 色激情天天射综合网| 日韩国产欧美视频| 一区二区三区日韩在线观看| 国产校园另类小说区| 91蝌蚪porny| 成人夜色视频网站在线观看| 精品一区二区免费| 成人免费一区二区三区视频| 欧美变态tickling挠脚心| 欧美色综合影院| 国产麻豆日韩欧美久久| 亚洲精品老司机| 亚洲欧洲性图库| 日本一二三四高清不卡| 欧美日韩免费高清一区色橹橹| 精品无人码麻豆乱码1区2区 | 天堂午夜影视日韩欧美一区二区| 久久综合色鬼综合色| 99在线精品免费| 免费亚洲电影在线| 亚洲乱码国产乱码精品精的特点| 欧美国产欧美综合| 国产精品污污网站在线观看| 欧美挠脚心视频网站| 欧美视频在线不卡| 欧美日韩在线综合| 国产成人在线视频播放| 国产裸体歌舞团一区二区| 久草这里只有精品视频| 九九视频精品免费| 国产精品一区一区三区| 三级成人在线视频| 奇米影视7777精品一区二区| 日本亚洲电影天堂| 狠狠色狠狠色合久久伊人| 狠狠色丁香婷综合久久| 国产91精品精华液一区二区三区 | 日韩电影免费在线观看网站| 日韩国产欧美在线观看| 久久国产综合精品| 日日骚欧美日韩| 免费观看30秒视频久久| 精品一区二区三区在线视频| 国产一区二区三区在线观看精品 | 国产色产综合色产在线视频| 欧美高清在线视频| 一区二区三区四区高清精品免费观看| 亚洲制服欧美中文字幕中文字幕| 亚洲大片精品永久免费| 亚洲精品国产a| 日韩 欧美一区二区三区| 麻豆91小视频| 精品一区二区成人精品| 成人性生交大片| 在线观看一区二区精品视频| 91在线观看高清| 3d动漫精品啪啪一区二区竹菊| 欧美电视剧免费观看| 日韩欧美国产一区在线观看| wwwwww.欧美系列| 亚洲精品水蜜桃| 久久99久久久久| 成年人网站91| 91在线精品一区二区| 99视频超级精品| 制服丝袜激情欧洲亚洲| 国产性天天综合网| 午夜伦理一区二区| 成人性视频免费网站| 666欧美在线视频| 国产精品久久久久久一区二区三区 | 欧美在线一二三四区| 欧美va亚洲va香蕉在线| 亚洲天堂中文字幕| 亚洲图片另类小说| 久久精品国产秦先生| 91农村精品一区二区在线| 欧美一区二区三区性视频| 中文文精品字幕一区二区| 日韩成人伦理电影在线观看| 成人午夜私人影院| 欧美一区二区三区在线观看视频| 国产精品久久久久一区| 九一久久久久久| 欧美专区日韩专区| 国产欧美日韩麻豆91| 亚洲视频在线观看三级| 久久精品国产77777蜜臀| 欧美在线|欧美| 国产精品九色蝌蚪自拍| 久久成人免费日本黄色| 欧美日韩视频专区在线播放| 国产女人aaa级久久久级| 日韩va亚洲va欧美va久久| 91网页版在线| 亚洲国产激情av| 国模套图日韩精品一区二区| 91精品国产乱码| 亚洲一卡二卡三卡四卡| 99精品视频在线免费观看| 久久精品一区二区| 激情深爱一区二区| 日韩一二三区不卡| 日韩精品电影一区亚洲| 欧美在线观看视频一区二区三区| 国产精品国产自产拍高清av王其| 国产呦精品一区二区三区网站| 91精品国产麻豆国产自产在线| 一区二区三区丝袜| 色婷婷精品久久二区二区蜜臂av | 91女厕偷拍女厕偷拍高清| 国产欧美日韩在线看| 国产精一区二区三区| 欧美成人精品3d动漫h| 蜜乳av一区二区三区| 欧美精品电影在线播放| 国产精品色噜噜| 国产成人免费在线视频| 久久综合久色欧美综合狠狠| 美腿丝袜亚洲一区| 日韩免费在线观看| 精品制服美女丁香| xfplay精品久久| 国产成人免费9x9x人网站视频| 久久婷婷一区二区三区| 国产高清精品久久久久| 国产视频一区在线播放| 成人免费高清在线观看| 亚洲欧洲韩国日本视频| 91免费版在线看| 亚洲一级片在线观看| 555www色欧美视频| 国产做a爰片久久毛片| 久久精品一区蜜桃臀影院| 成人av一区二区三区| 日韩理论电影院| 欧美午夜精品一区二区蜜桃| 五月婷婷色综合| 日韩精品一区二区三区中文不卡| 韩国中文字幕2020精品| 欧美国产成人在线| 色婷婷综合久久久中文一区二区 | 麻豆国产精品视频| 国产三级一区二区| 91热门视频在线观看| 亚洲午夜日本在线观看| 99久久久国产精品免费蜜臀| 亚洲精品国产精品乱码不99| 欧美日韩不卡在线| 精彩视频一区二区| 中文字幕制服丝袜成人av| 在线国产亚洲欧美| 激情五月播播久久久精品| 国产精品第13页| 欧美精品粉嫩高潮一区二区| 国产在线不卡视频| 亚洲免费在线视频一区 二区| 成人午夜视频在线观看| 亚洲国产综合色| 亚洲精品一区二区三区福利| 精品一区二区日韩| 亚洲三级电影全部在线观看高清| 欧美理论电影在线| 国产成人午夜片在线观看高清观看| 一区二区三区四区av| 精品福利在线导航| 日本久久一区二区三区| 久久精品理论片| 亚洲精品免费一二三区| 久久亚洲精品小早川怜子| 日本道色综合久久| 国产精品一区二区果冻传媒| 亚洲夂夂婷婷色拍ww47| 国产欧美在线观看一区| 91.com视频| 一本久久a久久精品亚洲| 国产在线麻豆精品观看| 亚洲午夜一区二区| 日韩美女精品在线| 久久久99精品免费观看不卡| 欧美日韩一区成人| 99re热这里只有精品视频| 国产一区二区三区久久悠悠色av|