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

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

?? statementwrapper.java

?? jsp數據庫系統
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return 0;
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#getResultSetHoldability()
     */
    public int getResultSetHoldability() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.getResultSetHoldability();
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return Statement.CLOSE_CURRENT_RESULT;
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#getResultSetType()
     */
    public int getResultSetType() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.getResultSetType();
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return ResultSet.TYPE_FORWARD_ONLY;
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#getUpdateCount()
     */
    public int getUpdateCount() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.getUpdateCount();
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return -1;
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#getWarnings()
     */
    public SQLWarning getWarnings() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.getWarnings();
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

        return null;
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#addBatch(java.lang.String)
     */
    public void addBatch(String sql) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                this.wrappedStmt.addBatch(sql);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#cancel()
     */
    public void cancel() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                this.wrappedStmt.cancel();
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#clearBatch()
     */
    public void clearBatch() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                this.wrappedStmt.clearBatch();
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#clearWarnings()
     */
    public void clearWarnings() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                this.wrappedStmt.clearWarnings();
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#close()
     */
    public void close() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                this.wrappedStmt.close();
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        } finally {
            this.wrappedStmt = null;
            this.pooledConnection = null;
        }
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#execute(java.lang.String, int)
     */
    public boolean execute(String sql, int autoGeneratedKeys)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.execute(sql, autoGeneratedKeys);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#execute(java.lang.String, int[])
     */
    public boolean execute(String sql, int[] columnIndexes)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.execute(sql, columnIndexes);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#execute(java.lang.String, java.lang.String[])
     */
    public boolean execute(String sql, String[] columnNames)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.execute(sql, columnNames);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#execute(java.lang.String)
     */
    public boolean execute(String sql) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.execute(sql);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#executeBatch()
     */
    public int[] executeBatch() throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeBatch();
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#executeQuery(java.lang.String)
     */
    public ResultSet executeQuery(String sql) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeQuery(sql);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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.Statement#executeUpdate(java.lang.String, int)
     */
    public int executeUpdate(String sql, int autoGeneratedKeys)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeUpdate(sql, autoGeneratedKeys);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

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

        // that out
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#executeUpdate(java.lang.String, int[])
     */
    public int executeUpdate(String sql, int[] columnIndexes)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeUpdate(sql, columnIndexes);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

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

        // that out
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#executeUpdate(java.lang.String, java.lang.String[])
     */
    public int executeUpdate(String sql, String[] columnNames)
        throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeUpdate(sql, columnNames);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } catch (SQLException sqlEx) {
            checkAndFireConnectionError(sqlEx);
        }

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

        // that out
    }

    /* (non-Javadoc)
     * @see java.sql.Statement#executeUpdate(java.lang.String)
     */
    public int executeUpdate(String sql) throws SQLException {
        try {
            if (this.wrappedStmt != null) {
                return this.wrappedStmt.executeUpdate(sql);
            } else {
                throw new SQLException("Statement already closed",
                    SQLError.SQL_STATE_ILLEGAL_ARGUMENT);
            }
        } 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一区二区三区免费野_久草精品视频
久久精品72免费观看| 国产精品久久一卡二卡| 欧美成人免费网站| 国产精品伦理一区二区| 亚洲大片精品永久免费| 九九九久久久精品| 91免费版在线| 欧美电视剧在线看免费| 国产人久久人人人人爽| 亚洲成av人片www| 国产酒店精品激情| 在线看国产日韩| 91精品国产欧美一区二区成人| 精品国产人成亚洲区| 一区二区日韩av| 精品亚洲成a人在线观看| 91欧美激情一区二区三区成人| 在线观看91av| 亚洲色图欧美偷拍| 捆绑变态av一区二区三区| 91蝌蚪porny九色| 精品免费国产二区三区| 亚洲一区二区三区四区在线| 国产精品911| 7777女厕盗摄久久久| 国产精品久久久久久一区二区三区| 午夜激情综合网| eeuss鲁片一区二区三区 | 亚洲天堂精品在线观看| 免费成人在线影院| 色吊一区二区三区| 亚洲国产高清不卡| 日本亚洲免费观看| 91国产丝袜在线播放| 久久一二三国产| 日韩专区中文字幕一区二区| 91尤物视频在线观看| 久久久不卡网国产精品一区| 香蕉成人啪国产精品视频综合网| 99re在线视频这里只有精品| 精品福利一区二区三区| 五月婷婷另类国产| 一本一道久久a久久精品| 国产日韩精品一区二区浪潮av| 日韩精品五月天| 欧美图片一区二区三区| 最新日韩在线视频| 福利电影一区二区| 精品国产乱码久久久久久闺蜜| 午夜精品123| 欧美色综合久久| 一卡二卡三卡日韩欧美| 99久久99久久综合| 国产精品电影院| 粉嫩一区二区三区性色av| 精品成a人在线观看| 日本不卡高清视频| 4438x亚洲最大成人网| 亚洲成人动漫一区| 欧美日韩一二三区| 亚洲第一狼人社区| 欧美三级电影在线观看| 91免费精品国自产拍在线不卡 | 国产精品综合视频| 日韩欧美亚洲另类制服综合在线| 午夜私人影院久久久久| 欧美视频三区在线播放| 一区二区高清在线| 欧美视频精品在线观看| 亚洲va中文字幕| 欧美视频中文字幕| 亚洲一二三四在线| 欧美另类videos死尸| 日韩综合一区二区| 91精品国产一区二区三区香蕉| 日本中文字幕一区二区有限公司| 欧美日韩久久不卡| 日本视频在线一区| 精品少妇一区二区三区视频免付费 | 免费高清在线视频一区·| 欧美高清性hdvideosex| 日韩综合一区二区| 精品欧美乱码久久久久久| 激情综合网天天干| 国产亚洲成年网址在线观看| 成人一区二区三区中文字幕| 中文字幕在线一区免费| 色播五月激情综合网| 午夜激情一区二区三区| 欧美一区二区女人| 精彩视频一区二区| 国产精品久久久久久久久晋中| 99精品久久久久久| 亚洲午夜一区二区| 亚洲va欧美va国产va天堂影院| 在线不卡的av| 国产资源在线一区| 国产精品久久久久久妇女6080 | 亚洲欧美色图小说| 欧美日韩国产高清一区二区三区| 亚洲国产人成综合网站| 日韩欧美国产不卡| 成人精品一区二区三区四区| 亚洲精品成人悠悠色影视| 911精品国产一区二区在线| 精品一区二区三区在线观看国产| 国产欧美在线观看一区| 色婷婷狠狠综合| 美腿丝袜一区二区三区| 中文字幕精品一区二区精品绿巨人 | 欧美一区二区三区在线观看视频| 免费观看日韩av| 欧美激情在线免费观看| 欧美视频精品在线| 国产一区二区三区四区五区入口 | 一区二区三区精品视频在线| 91精品国产色综合久久久蜜香臀| 国产999精品久久久久久绿帽| 夜夜精品视频一区二区| 日韩欧美在线123| 91热门视频在线观看| 美女高潮久久久| 专区另类欧美日韩| 精品剧情v国产在线观看在线| 99国产精品久久久久久久久久| 日本最新不卡在线| 亚洲视频一区在线| 欧美mv日韩mv国产| 欧美无乱码久久久免费午夜一区| 国产大片一区二区| 日日嗨av一区二区三区四区| 亚洲欧洲av一区二区三区久久| 日韩欧美三级在线| 在线一区二区视频| 国产91综合一区在线观看| 日本亚洲免费观看| 一区二区三区国产精品| 欧美韩国一区二区| 欧美电影免费观看高清完整版在线| 色综合天天综合| 国产最新精品免费| 日本aⅴ精品一区二区三区 | 在线视频观看一区| 国产盗摄女厕一区二区三区| 日产国产高清一区二区三区| 一区二区在线观看视频| 亚洲国产精品传媒在线观看| 日韩欧美视频在线| 欧美日韩在线播| 色999日韩国产欧美一区二区| 国产成人免费在线观看| 久久国产精品99精品国产 | 在线播放中文字幕一区| 色av一区二区| 99在线精品观看| 国产成人亚洲精品青草天美| 精品中文av资源站在线观看| 五月婷婷激情综合网| 亚洲黄色性网站| 国产精品久久久久aaaa樱花| 久久久不卡网国产精品二区| 日韩精品资源二区在线| 6080日韩午夜伦伦午夜伦| 色中色一区二区| 91啪亚洲精品| 色悠悠久久综合| av午夜精品一区二区三区| 国产麻豆精品久久一二三| 激情欧美一区二区| 麻豆精品在线看| 蜜桃在线一区二区三区| 午夜国产精品一区| 日韩一区二区不卡| 欧美区一区二区三区| 欧美日韩一卡二卡| 欧美日韩在线亚洲一区蜜芽| 欧美三级一区二区| 欧美日韩情趣电影| 欧美精品在欧美一区二区少妇| 欧美日本国产一区| 欧美老肥妇做.爰bbww| 在线不卡的av| 日韩欧美色综合| 精品捆绑美女sm三区| 久久伊99综合婷婷久久伊| 久久久av毛片精品| 久久精品人人做人人爽人人| 国产三级精品视频| 国产精品嫩草影院com| 国产精品国产自产拍高清av王其 | 99精品热视频| 在线观看成人免费视频| 欧美女孩性生活视频| 欧美日韩国产片| 日韩视频在线你懂得| 久久综合九色综合97婷婷女人 | fc2成人免费人成在线观看播放| 成人性生交大合| 99国产精品一区| 欧美视频一区二|