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

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

?? connectionwrapper.java

?? 基于java的oa系統
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.   Notifies     * listeners of any caught exceptions before  re-throwing to client.     *     * @throws SQLException if an error occurs     */    public void clearWarnings() throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                this.mc.clearWarnings();            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }    }    /**     * The physical connection is not actually closed.  the physical connection     * is closed when the application server calls     * mysqlPooledConnection.close().  this object is  de-referenced by the     * pooled connection each time mysqlPooledConnection.getConnection()  is     * called by app server.     *     * @throws SQLException if an error occurs     */    public void close() throws SQLException {        close(true);    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @throws SQLException if an error occurs     */    public void commit() throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                this.mc.commit();            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#createStatement()     */    public java.sql.Statement createStatement() throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new StatementWrapper(this.mpc, this.mc.createStatement());            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#createStatement()     */    public java.sql.Statement createStatement(int resultSetType,        int resultSetConcurrency) throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new StatementWrapper(this.mpc,                    this.mc.createStatement(resultSetType, resultSetConcurrency));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#createStatement(int, int, int)     */    public java.sql.Statement createStatement(int arg0, int arg1, int arg2)        throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new StatementWrapper(this.mpc,                    this.mc.createStatement(arg0, arg1, arg2));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#nativeSQL()     */    public String nativeSQL(String sql) throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return this.mc.nativeSQL(sql);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#prepareCall()     */    public java.sql.CallableStatement prepareCall(String sql)        throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return this.mc.prepareCall(sql);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#prepareCall()     */    public java.sql.CallableStatement prepareCall(String sql,        int resultSetType, int resultSetConcurrency) throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return this.mc.prepareCall(sql, resultSetType,                    resultSetConcurrency);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#prepareCall(String, int, int, int)     */    public java.sql.CallableStatement prepareCall(String arg0, int arg1,        int arg2, int arg3) throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return this.mc.prepareCall(arg0, arg1, arg2, arg3);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#prepareStatement()     */    public java.sql.PreparedStatement prepareStatement(String sql)        throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(sql));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#prepareStatement()     */    public java.sql.PreparedStatement prepareStatement(String sql,        int resultSetType, int resultSetConcurrency) throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(sql, resultSetType,                        resultSetConcurrency));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#prepareStatement(String, int, int, int)     */    public java.sql.PreparedStatement prepareStatement(String arg0, int arg1,        int arg2, int arg3) throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(arg0, arg1, arg2, arg3));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#prepareStatement(String, int)     */    public java.sql.PreparedStatement prepareStatement(String arg0, int arg1)        throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(arg0, arg1));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#prepareStatement(String, int[])     */    public java.sql.PreparedStatement prepareStatement(String arg0, int[] arg1)        throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(arg0, arg1));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#prepareStatement(String, String[])     */    public java.sql.PreparedStatement prepareStatement(String arg0,        String[] arg1) throws SQLException {        if (this.closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                return new PreparedStatementWrapper(this.mpc,                    this.mc.prepareStatement(arg0, arg1));            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }        return null; // we don't reach this code, compiler can't tell    }    /**     * @see Connection#releaseSavepoint(Savepoint)     */    public void releaseSavepoint(Savepoint arg0) throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                this.mc.releaseSavepoint(arg0);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }    }    /**     * Passes call to method on physical connection instance.  Notifies     * listeners of any caught exceptions before re-throwing to client.     *     * @see java.sql.Connection#rollback()     */    public void rollback() throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                this.mc.rollback();            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }    }    /**     * @see Connection#rollback(Savepoint)     */    public void rollback(Savepoint arg0) throws SQLException {        if (closed) {            throw new SQLException(invalidHandleStr);        } else {            try {                this.mc.rollback(arg0);            } catch (SQLException sqlException) {                checkAndFireConnectionError(sqlException);            }        }    }    protected void close(boolean fireClosedEvent) throws SQLException {        synchronized (this.mpc) {            if (this.closed) {                return;            }            if (((com.mysql.jdbc.Connection) this.mc).getRollbackOnPooledClose() &&                    !this.getAutoCommit()) {                rollback();            }            if (fireClosedEvent) {                this.mpc.callListener(MysqlPooledConnection.CONNECTION_CLOSED_EVENT,                    null);            }            // set closed status to true so that if application client tries to make additional            // calls a sqlException will be thrown.  The physical connection is            // re-used by the pooled connection each time getConnection is called.            this.closed = true;        }    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜伦理一区二区| aa级大片欧美| voyeur盗摄精品| 欧美老女人第四色| 国产欧美精品一区二区三区四区| 亚洲一区二区三区在线看| 精品一区二区三区影院在线午夜| av亚洲精华国产精华| 精品国产凹凸成av人网站| 亚洲在线一区二区三区| 国产一区二区三区免费观看| 欧美日韩视频第一区| 综合久久给合久久狠狠狠97色| 免费观看一级欧美片| 欧美亚洲免费在线一区| 国产精品视频一二| 国产一区二区三区四| 在线观看91精品国产麻豆| 亚洲精品视频自拍| 成人av资源在线观看| 国产亚洲成av人在线观看导航| 久久成人久久鬼色| 欧美精品久久久久久久多人混战| 亚洲免费观看高清完整版在线观看| 国产成人综合在线播放| 欧美va亚洲va在线观看蝴蝶网| 亚洲一区在线视频| 日本丶国产丶欧美色综合| 国产精品二三区| av男人天堂一区| 国产精品美女久久久久久| 国产成人精品三级| 久久久蜜桃精品| 国产99久久久国产精品免费看| 久久综合色一综合色88| 精东粉嫩av免费一区二区三区| 日韩你懂的在线播放| 老司机精品视频导航| 91精品国产入口| 乱中年女人伦av一区二区| 欧美一区二区三区免费视频| 蜜桃在线一区二区三区| 欧美成人a在线| 国产一区二三区好的| 久久久久国产成人精品亚洲午夜| 国产高清不卡二三区| 国产精品色眯眯| 91福利精品视频| 视频在线在亚洲| 欧美大片国产精品| 国产成人精品综合在线观看| 中文文精品字幕一区二区| 成人av在线看| 亚洲一区二区美女| 欧美mv和日韩mv的网站| 国产宾馆实践打屁股91| 中文字幕在线免费不卡| 在线观看www91| 首页欧美精品中文字幕| 欧美精品一区二区蜜臀亚洲| 国产成人在线视频网址| 一区二区三区在线观看视频| 在线电影院国产精品| 麻豆91在线看| 国产精品毛片久久久久久| 欧美三片在线视频观看| 国内精品在线播放| 国产精品久久久久久久久免费丝袜| 在线观看日韩国产| 久久97超碰色| 亚洲美女淫视频| 2欧美一区二区三区在线观看视频| 99re视频这里只有精品| 日韩高清不卡一区| 亚洲欧洲另类国产综合| 欧美一级一区二区| 色婷婷亚洲精品| 国产一区二区三区在线观看免费视频 | 亚洲影视在线观看| 精品国产凹凸成av人网站| 日本韩国精品一区二区在线观看| 久久国产精品免费| 一区二区三区国产精品| 久久久亚洲欧洲日产国码αv| 欧美在线视频你懂得| 懂色av一区二区夜夜嗨| 日韩黄色片在线观看| 中文字幕中文字幕一区| 精品久久五月天| 欧美日韩在线免费视频| 成人综合婷婷国产精品久久蜜臀 | 91麻豆精品国产91久久久久久| 国产精品亚洲一区二区三区妖精| 亚洲va天堂va国产va久| 国产精品美女久久久久aⅴ| 欧美一级专区免费大片| 欧美性xxxxxxxx| 成人av午夜电影| 国产一区中文字幕| 日韩av中文字幕一区二区| 国产精品久久久久久久久久久免费看| 日韩欧美www| 制服丝袜亚洲精品中文字幕| 中文字幕精品一区二区精品绿巨人| 欧美日韩aaa| 欧美在线视频日韩| 色综合久久88色综合天天6 | 91色.com| www.亚洲国产| 成人蜜臀av电影| 国产高清成人在线| 国产精品亚洲视频| 精品无人区卡一卡二卡三乱码免费卡 | 国产欧美日韩在线视频| 91精品国产综合久久精品| 欧美日韩中文国产| 欧美人动与zoxxxx乱| 欧美性生交片4| 欧美日韩国产一级| 欧美男人的天堂一二区| 欧美三级韩国三级日本三斤| 欧美日韩一区三区四区| 欧美日韩另类一区| 欧美久久高跟鞋激| 在线成人小视频| 日韩欧美aaaaaa| www国产亚洲精品久久麻豆| 欧美va日韩va| 国产三级精品三级| 中文字幕中文字幕一区二区| 亚洲色图色小说| 亚洲午夜激情网页| 日本三级韩国三级欧美三级| 强制捆绑调教一区二区| 精东粉嫩av免费一区二区三区| 国产一区不卡视频| 色综合一个色综合亚洲| 在线观看日产精品| 日韩网站在线看片你懂的| 欧美成人精品1314www| 中文无字幕一区二区三区| 亚洲日本在线观看| 日本一道高清亚洲日美韩| 久草热8精品视频在线观看| 国产激情精品久久久第一区二区 | 国产亚洲欧美在线| 中文字幕色av一区二区三区| 亚洲一区二区三区四区的| 免费在线看成人av| 国产精品18久久久久久久久| 色综合天天综合在线视频| 69久久夜色精品国产69蝌蚪网| 欧美精品一区二区三区高清aⅴ| 国产精品理伦片| 日本欧洲一区二区| 大白屁股一区二区视频| 911精品产国品一二三产区| 久久久影院官网| 亚洲第一综合色| 国产成人av资源| 717成人午夜免费福利电影| 国产精品国产三级国产aⅴ入口| 午夜久久久久久电影| 国产乱码一区二区三区| 日本精品裸体写真集在线观看| 精品少妇一区二区三区日产乱码| 中文字幕中文乱码欧美一区二区 | 亚洲国产成人av好男人在线观看| 韩国精品在线观看| 欧美性猛片aaaaaaa做受| 国产欧美1区2区3区| 石原莉奈一区二区三区在线观看| 成人午夜精品在线| 精品国精品自拍自在线| 亚洲一二三四区不卡| 国产成人啪免费观看软件| 欧美精品在线一区二区| 亚洲免费在线看| 成人久久久精品乱码一区二区三区| 91精品国产免费久久综合| 亚洲女同一区二区| 丰满亚洲少妇av| 精品欧美久久久| 麻豆91免费观看| 91麻豆精品91久久久久同性| 亚洲一区精品在线| 91免费版pro下载短视频| 国产日韩欧美一区二区三区综合 | 国产91丝袜在线18| 欧美r级电影在线观看| 视频一区二区三区中文字幕| 91视频在线观看免费| 国产欧美日韩不卡免费| 国产成人精品一区二区三区四区| 欧美成人激情免费网| 日av在线不卡| 日韩精品一区二区三区三区免费| 日韩av中文字幕一区二区| 91精品国产综合久久福利| 日韩激情视频在线观看|