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

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

?? statementwrapper.java

?? mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序 mysql jdbc驅(qū)動程序
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
		}		return 0;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getResultSetHoldability()	 */	public int getResultSetHoldability() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getResultSetHoldability();			}			throw SQLError.createSQLException("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();			}			throw SQLError.createSQLException("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();			}			throw SQLError.createSQLException("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();			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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();			}			throw SQLError.createSQLException("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) {				ResultSet rs = this.wrappedStmt.executeQuery(sql);				((com.mysql.jdbc.ResultSet) rs).setWrapperStatement(this);				return rs;			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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);			}			throw SQLError.createSQLException("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	}	public void enableStreamingResults() throws SQLException {		try {			if (this.wrappedStmt != null) {				((com.mysql.jdbc.Statement) this.wrappedStmt)						.enableStreamingResults();			} else {				throw SQLError.createSQLException(						"No operations allowed after statement closed",						SQLError.SQL_STATE_GENERAL_ERROR);			}		} catch (SQLException sqlEx) {			checkAndFireConnectionError(sqlEx);		}	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕第一区二区| 亚洲欧美日韩国产综合| 99这里只有精品| 午夜精品一区二区三区三上悠亚| 久久奇米777| 在线成人午夜影院| 色综合久久综合网欧美综合网| 日韩成人精品在线观看| 亚洲黄网站在线观看| 国产日韩av一区| 精品国产免费视频| 欧美精品在线观看播放| 91黄视频在线观看| 国产成人在线网站| 久久99精品久久久久久动态图| 亚洲一区二区在线免费观看视频| 国产精品天干天干在观线| 日韩午夜激情av| 欧美久久一区二区| 欧美色网一区二区| 99热精品一区二区| 成人听书哪个软件好| 国产一区二区三区观看| 日韩经典中文字幕一区| 亚洲一区二区欧美激情| 亚洲精品国产一区二区精华液| 久久婷婷成人综合色| 在线成人免费视频| 欧美日韩美女一区二区| 欧美日韩在线三级| 色吧成人激情小说| 91蝌蚪porny| 91香蕉国产在线观看软件| 成人午夜看片网址| 国产91丝袜在线播放0| 国产精品一区二区在线看| 激情图区综合网| 精品一区二区在线视频| 九色|91porny| 韩国三级中文字幕hd久久精品| 麻豆精品在线视频| 精品一区二区三区不卡| 激情综合网天天干| 国内外成人在线| 国产一区二区不卡| 成人美女视频在线观看| 波多野结衣在线aⅴ中文字幕不卡| 成人av免费网站| 91美女片黄在线观看| 在线观看一区二区视频| 欧美精品一级二级三级| 欧美一区二区在线不卡| 精品久久久久av影院 | 成人激情开心网| 成人短视频下载| 日本久久一区二区| 欧美日韩高清在线播放| 欧美一区二区精美| 久久综合色8888| 国产精品入口麻豆九色| 亚洲免费电影在线| 日韩和欧美的一区| 国产乱人伦偷精品视频不卡| 成人av在线看| 欧美精品在线视频| 久久久综合视频| 亚洲欧美激情小说另类| 天天影视色香欲综合网老头| 麻豆精品一区二区av白丝在线| 国产大陆亚洲精品国产| 99精品久久只有精品| 欧美日韩二区三区| 久久久综合九色合综国产精品| 综合网在线视频| 免费在线观看不卡| 成人免费看视频| 欧美日韩国产a| 国产欧美日韩精品a在线观看| 亚洲资源中文字幕| 九一九一国产精品| 色久综合一二码| 日韩精品在线看片z| 亚洲国产岛国毛片在线| 亚洲午夜激情av| 国产99久久久国产精品免费看| 色国产精品一区在线观看| 精品国产一区二区三区忘忧草| 国产精品美女视频| 丝袜美腿亚洲一区| 成人美女在线观看| 欧美成人一区二区三区在线观看| 国产精品欧美极品| 蜜臀av亚洲一区中文字幕| 91在线免费视频观看| 欧美一区二区三区啪啪| 亚洲欧洲www| 国产一区二区三区av电影| 欧美三级电影在线看| 国产人伦精品一区二区| 日韩高清中文字幕一区| 色婷婷一区二区三区四区| 久久综合久久鬼色| 日韩精品一区第一页| 91在线无精精品入口| 国产欧美1区2区3区| 肉色丝袜一区二区| 色老汉av一区二区三区| 国产精品天干天干在观线| 蜜桃精品视频在线观看| 欧美三级韩国三级日本三斤| 国产精品成人免费精品自在线观看| 免费观看一级特黄欧美大片| 欧美日韩在线播| 亚洲欧美视频在线观看视频| 国产精品99久| 欧美变态tickling挠脚心| 亚欧色一区w666天堂| 色综合中文字幕国产| 精品处破学生在线二十三| 亚洲福利视频三区| 在线免费观看不卡av| 国产精品免费视频一区| 国产一区二区在线免费观看| 制服丝袜在线91| 亚洲bt欧美bt精品| 欧美视频在线播放| 亚洲国产精品久久人人爱蜜臀| 一本色道久久综合狠狠躁的推荐| 国产欧美日韩亚州综合| 国产精品69久久久久水密桃| 精品国产免费一区二区三区香蕉 | 美国一区二区三区在线播放| 欧美性videosxxxxx| 亚洲与欧洲av电影| 91官网在线免费观看| 一区二区三区成人在线视频| 色综合久久66| 亚洲综合激情小说| 欧美精品在线一区二区| 免费成人在线观看| 久久综合狠狠综合| 成人性视频免费网站| 国产精品素人一区二区| aaa欧美色吧激情视频| 亚洲欧美日韩国产综合在线| 色哟哟日韩精品| 亚洲午夜一区二区| 欧美一级一区二区| 极品少妇一区二区三区精品视频| 久久久精品免费网站| voyeur盗摄精品| 一区二区三区四区在线| 欧美日韩美少妇| 久久国产欧美日韩精品| 欧美激情一区二区三区不卡| 成人精品gif动图一区| 一区二区三区蜜桃网| 9191精品国产综合久久久久久| 久久爱另类一区二区小说| 欧美极品少妇xxxxⅹ高跟鞋 | 久久久91精品国产一区二区精品 | 久久久久久久久久久久久久久99| 国产精品亚洲午夜一区二区三区| 中文字幕一区二区三区视频| 色噜噜狠狠一区二区三区果冻| 日韩精品一级二级| 国产三级三级三级精品8ⅰ区| av在线不卡网| 偷拍亚洲欧洲综合| 欧美激情一区二区| 欧美日韩日本视频| 国产一区999| 亚洲激情欧美激情| 精品国产污网站| 91国产丝袜在线播放| 久久99国产精品久久99果冻传媒| 欧美激情一二三区| 欧美高清性hdvideosex| 国产成人免费视频网站高清观看视频| 自拍偷在线精品自拍偷无码专区| 欧美日韩电影一区| 成人黄色免费短视频| 午夜精品久久久久久不卡8050| 欧美精品一区二| 色哟哟欧美精品| 国内精品久久久久影院一蜜桃| 成人免费一区二区三区在线观看| 欧美美女直播网站| 国产精品夜夜嗨| 丝袜美腿亚洲色图| ●精品国产综合乱码久久久久| 91精品国产aⅴ一区二区| 国产成人精品三级麻豆| 日韩影视精彩在线| 《视频一区视频二区| xnxx国产精品| 日韩一区二区在线免费观看| 色婷婷久久一区二区三区麻豆| 国产麻豆9l精品三级站| 午夜精品久久久久影视|