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

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

?? preparedstatementwrapper.java

?? jsp數據庫系統
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
                    sqlType);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setNull(int, int, java.lang.String)
     */
    public void setNull(int parameterIndex, int sqlType, String typeName)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setNull(parameterIndex,
                    sqlType, typeName);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setObject(int, java.lang.Object)
     */
    public void setObject(int parameterIndex, Object x)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setObject(parameterIndex,
                    x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setObject(int, java.lang.Object, int)
     */
    public void setObject(int parameterIndex, Object x, int targetSqlType)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setObject(parameterIndex,
                    x, targetSqlType);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setObject(int, java.lang.Object, int, int)
     */
    public void setObject(int parameterIndex, Object x, int targetSqlType,
        int scale) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setObject(parameterIndex,
                    x, scale);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#getParameterMetaData()
     */
    public ParameterMetaData getParameterMetaData() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return ((PreparedStatement) this.wrappedStmt)
                .getParameterMetaData();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return null;
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setRef(int, java.sql.Ref)
     */
    public void setRef(int parameterIndex, Ref x) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setRef(parameterIndex, x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setShort(int, short)
     */
    public void setShort(int parameterIndex, short x) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setShort(parameterIndex,
                    x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setString(int, java.lang.String)
     */
    public void setString(int parameterIndex, String x)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setString(parameterIndex,
                    x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setTime(int, java.sql.Time)
     */
    public void setTime(int parameterIndex, Time x) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setTime(parameterIndex, x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setTime(int, java.sql.Time, java.util.Calendar)
     */
    public void setTime(int parameterIndex, Time x, Calendar cal)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setTime(parameterIndex,
                    x, cal);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp)
     */
    public void setTimestamp(int parameterIndex, Timestamp x)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setTimestamp(parameterIndex,
                    x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp, java.util.Calendar)
     */
    public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setTimestamp(parameterIndex,
                    x, cal);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#setURL(int, java.net.URL)
     */
    public void setURL(int parameterIndex, URL x) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setURL(parameterIndex, x);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /**
     * DOCUMENT ME!
     *
     * @param parameterIndex DOCUMENT ME!
     * @param x DOCUMENT ME!
     * @param length DOCUMENT ME!
     *
     * @throws SQLException DOCUMENT ME!
     *
     * @see java.sql.PreparedStatement#setUnicodeStream(int,
     *      java.io.InputStream, int)
     * @deprecated
     */
    public void setUnicodeStream(int parameterIndex, InputStream x, int length)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).setUnicodeStream(parameterIndex,
                    x, length);
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#addBatch()
     */
    public void addBatch() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).addBatch();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#clearParameters()
     */
    public void clearParameters() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                ((PreparedStatement) this.wrappedStmt).clearParameters();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#execute()
     */
    public boolean execute() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return ((PreparedStatement) this.wrappedStmt).execute();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return false; // we actually never get here, but the compiler can't figure 

        // that out
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#executeQuery()
     */
    public ResultSet executeQuery() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return ((PreparedStatement) this.wrappedStmt).executeQuery();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return null; // we actually never get here, but the compiler can't figure 

        // that out
    }

    /* (non-Javadoc)
     * @see java.sql.PreparedStatement#executeUpdate()
     */
    public int executeUpdate() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return ((PreparedStatement) this.wrappedStmt).executeUpdate();
            } else {
                throw new SQLException("No operations allowed after statement closed",
                    SQLError.SQL_STATE_GENERAL_ERROR);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return -1; // we actually never get here, but the compiler can't figure 

        // that out
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本久道久久综合中文字幕 | 日韩一区二区三区在线视频| 亚洲色图.com| 色素色在线综合| 亚洲国产婷婷综合在线精品| 在线一区二区三区做爰视频网站| 一区二区三区四区精品在线视频| 欧洲精品视频在线观看| 亚洲国产成人tv| 精品蜜桃在线看| 国产成人免费在线观看| 亚洲欧美一区二区三区国产精品| 欧美综合天天夜夜久久| 日日夜夜免费精品| 久久一夜天堂av一区二区三区| 国产福利不卡视频| 亚洲男人天堂一区| 制服丝袜成人动漫| 国产精品99久久久久久似苏梦涵| 亚洲精品视频一区| 91精品婷婷国产综合久久性色| 国产在线视视频有精品| 欧美极品另类videosde| 欧美中文字幕一区二区三区 | 国产丝袜美腿一区二区三区| av在线不卡电影| 日韩在线卡一卡二| 国产视频一区二区在线| 欧美日韩一区小说| 国产成人av资源| 午夜激情综合网| 国产精品免费aⅴ片在线观看| 欧美日韩亚洲丝袜制服| 国产精品 欧美精品| 亚洲一区在线视频观看| 国产亚洲精久久久久久| 欧美久久一二区| 成人性生交大片免费看视频在线| 亚洲成人精品一区| 日本一区二区三级电影在线观看 | 亚洲成av人片在线观看| 国产校园另类小说区| 欧美日韩精品一区二区三区| 懂色av一区二区夜夜嗨| 日韩国产欧美在线视频| 亚洲久草在线视频| 久久精品男人天堂av| 5858s免费视频成人| 91美女蜜桃在线| 国产精品小仙女| 久久黄色级2电影| 午夜精品久久久久影视| 亚洲欧美日韩综合aⅴ视频| 欧美tickling网站挠脚心| 欧美丝袜自拍制服另类| 国产99一区视频免费| 免费在线观看不卡| 首页国产欧美久久| 一区二区三区在线视频观看58 | av高清不卡在线| 国产一区中文字幕| 日本少妇一区二区| 亚洲一区二区在线观看视频 | 欧美精品高清视频| 色婷婷久久久亚洲一区二区三区| 国产91精品免费| 国内精品视频一区二区三区八戒| 亚洲h动漫在线| 亚洲成人av电影| 亚洲已满18点击进入久久| 一区二区三区在线观看网站| 中文字幕在线免费不卡| 国产精品色在线| 久久精品一二三| 精品国产乱码久久久久久久久 | 亚洲午夜免费视频| 亚洲嫩草精品久久| 一区二区三区欧美在线观看| 亚洲精品网站在线观看| 一区二区三区中文字幕精品精品 | 亚洲国产精品一区二区www在线| 亚洲日本va在线观看| 亚洲三级在线播放| 一级特黄大欧美久久久| 一区二区三区在线观看国产| 亚洲精品一二三四区| 亚洲黄色小视频| 午夜精品久久久久久久| 日本不卡视频在线观看| 久久www免费人成看片高清| 激情综合亚洲精品| 国产盗摄精品一区二区三区在线| 国产精品一二三区| 不卡一区中文字幕| 一本一道综合狠狠老| 欧美网站一区二区| 欧美va亚洲va香蕉在线| 国产欧美日韩在线观看| 亚洲日本电影在线| 午夜精品久久久久久久99水蜜桃| 久久国产麻豆精品| 国产suv精品一区二区三区| 91一区在线观看| 欧美日韩精品电影| 久久综合精品国产一区二区三区| 国产精品网站在线| 亚洲一区二区免费视频| 麻豆精品国产91久久久久久| 成人永久看片免费视频天堂| 欧美性xxxxxx少妇| 欧美zozo另类异族| 中文字幕中文字幕一区| 亚洲成人一区二区| 国产精品1区2区3区在线观看| 97精品电影院| 欧美岛国在线观看| 亚洲男女一区二区三区| 免费久久99精品国产| 波多野结衣在线aⅴ中文字幕不卡| 欧美视频日韩视频在线观看| www国产亚洲精品久久麻豆| 亚洲婷婷在线视频| 久色婷婷小香蕉久久| 97久久精品人人澡人人爽| 日韩欧美中文字幕精品| 亚洲欧美自拍偷拍| 久久精品国产亚洲aⅴ| 91麻豆精品在线观看| 日韩你懂的电影在线观看| 中文字幕一区二区三区精华液 | 日韩精品一区二区三区中文精品| 国产精品理伦片| 秋霞电影一区二区| 97久久精品人人做人人爽| 26uuu精品一区二区| 香蕉乱码成人久久天堂爱免费| 国产高清精品网站| 欧美一区二区私人影院日本| 亚洲美女精品一区| 国产美女一区二区三区| 在线播放日韩导航| 一区二区三区四区不卡在线| 大尺度一区二区| 欧美成人一区二区三区| 午夜精品123| 色婷婷精品久久二区二区蜜臂av| 欧美高清在线一区二区| 国产一区二区三区免费在线观看| 欧美三级日韩在线| 亚洲黄网站在线观看| 成人av在线播放网站| 国产亚洲视频系列| 国精产品一区一区三区mba桃花| 欧美日韩高清一区二区三区| 亚洲品质自拍视频| 成人av网站大全| 久久久久久黄色| 久久精品72免费观看| 欧美一区二区精品久久911| 亚洲一区二区三区四区在线免费观看 | 国产网红主播福利一区二区| 美女高潮久久久| 日韩欧美一级二级三级久久久| 丝袜诱惑制服诱惑色一区在线观看| 色婷婷av一区二区三区软件| 亚洲黄色录像片| 欧美亚洲自拍偷拍| 一区二区三区**美女毛片| 色欧美日韩亚洲| 亚洲精品久久久蜜桃| 色天使色偷偷av一区二区| 夜夜精品视频一区二区 | 7777精品伊人久久久大香线蕉的| 亚洲综合偷拍欧美一区色| 欧美三级在线视频| 日韩一区精品字幕| 日韩视频国产视频| 国产在线精品一区二区不卡了| 久久久蜜臀国产一区二区| 国产成人鲁色资源国产91色综 | 26uuu色噜噜精品一区| 国产馆精品极品| 国产精品进线69影院| 色天使色偷偷av一区二区 | 男人的j进女人的j一区| 777亚洲妇女| 韩国三级在线一区| 国产日本亚洲高清| 色婷婷久久综合| 免费成人深夜小野草| 久久久久久久精| 91国模大尺度私拍在线视频| 午夜精品一区二区三区三上悠亚| 亚洲精品在线观看视频| 成人在线综合网站| 亚洲妇女屁股眼交7| 日韩精品资源二区在线| 成人精品小蝌蚪| 日韩经典中文字幕一区| 国产色综合久久|