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

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

?? statementwrapper.java

?? 用于JAVA數(shù)據(jù)庫連接.解壓就可用,方便得很
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
		return null;	}	/*	 * (non-Javadoc)	 * 	 * @see java.sql.Statement#getResultSetConcurrency()	 */	public int getResultSetConcurrency() throws SQLException {		try {			if (this.wrappedStmt != null) {				return this.wrappedStmt.getResultSetConcurrency();			}			throw SQLError.createSQLException("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();			}			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.ResultSetInternalMethods) 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);		}	}}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人国产精品视频| 日本成人在线看| 日韩欧美一级特黄在线播放| 成人午夜精品一区二区三区| 偷拍一区二区三区四区| 国产欧美一区二区在线观看| 337p亚洲精品色噜噜| 亚洲免费电影在线| 色妞www精品视频| 国产日本欧美一区二区| 99热精品国产| 国产综合色精品一区二区三区| 一区二区高清在线| 亚洲国产高清在线| 久久色中文字幕| 7777精品伊人久久久大香线蕉超级流畅| 成人精品一区二区三区四区| 韩日精品视频一区| 日本不卡在线视频| 亚洲成a人v欧美综合天堂 | 欧美精彩视频一区二区三区| 91精品免费观看| 欧美日韩午夜在线视频| 972aa.com艺术欧美| 国产91丝袜在线播放0| 美女视频一区二区三区| 午夜精品福利在线| 一区二区理论电影在线观看| 亚洲视频网在线直播| 国产女人水真多18毛片18精品视频| 日韩欧美国产wwwww| 在线不卡免费av| 欧美色手机在线观看| 欧美在线一区二区三区| 色欲综合视频天天天| 99久久er热在这里只有精品15| 粉嫩av一区二区三区| 粉嫩高潮美女一区二区三区| 国产成人免费9x9x人网站视频| 国产麻豆成人精品| 国产成人自拍在线| 国产大陆亚洲精品国产| 国产一区二区精品在线观看| 国产乱码一区二区三区| 国产一区二区三区在线观看免费 | 国产精品久久久久久亚洲毛片| 久久精品综合网| 欧美韩日一区二区三区四区| 中国av一区二区三区| 亚洲男人的天堂av| 亚洲激情自拍视频| 亚洲综合视频在线观看| 偷拍一区二区三区| 久久国产生活片100| 国产精品自在在线| 成人午夜av影视| 色先锋久久av资源部| 欧美午夜在线观看| 91精品国产一区二区三区香蕉| 日韩精品综合一本久道在线视频| 精品国产露脸精彩对白| 日本一区二区三级电影在线观看| 国产精品久线在线观看| 一区二区高清视频在线观看| 亚洲视频免费观看| 精品国产精品网麻豆系列| 亚洲精品在线免费观看视频| 中文字幕电影一区| 一区二区三区精品在线观看| 天堂影院一区二区| 国产一区二区三区黄视频| 成人黄色777网| 欧美日韩国产免费一区二区| 精品女同一区二区| 国产精品久久久久久妇女6080| 一级做a爱片久久| 国内精品国产成人国产三级粉色| 99精品久久久久久| 91麻豆精品国产91久久久久久| 久久伊人中文字幕| 尤物在线观看一区| 老司机免费视频一区二区| 99视频精品全部免费在线| 欧美日本一区二区三区| 国产亚洲一二三区| 五月综合激情婷婷六月色窝| 国内精品国产成人国产三级粉色| 色综合激情久久| 精品精品欲导航| 一区二区三区美女| 97se狠狠狠综合亚洲狠狠| 91成人免费在线视频| 日韩成人精品在线| av日韩在线网站| 欧美大片顶级少妇| 亚洲综合色噜噜狠狠| 国产美女娇喘av呻吟久久| 欧美日韩美女一区二区| 中文字幕av资源一区| 欧美aaa在线| 在线一区二区视频| 国产欧美精品一区二区色综合朱莉 | 亚洲婷婷在线视频| 国产在线视频精品一区| 欧美男生操女生| 亚洲日穴在线视频| 国产成人av一区二区| 日韩精品一区二区三区三区免费| 一区二区日韩电影| 99视频国产精品| 久久精品人人做人人综合| 久久国产夜色精品鲁鲁99| 欧美精选在线播放| 亚洲女女做受ⅹxx高潮| 成人高清免费观看| 国产精品久久久久久福利一牛影视 | 亚洲色图欧洲色图婷婷| 美女精品自拍一二三四| 欧美亚洲动漫制服丝袜| 一区二区三区在线免费播放| 丰满白嫩尤物一区二区| 久久久久久久一区| 极品美女销魂一区二区三区| 欧美精品色一区二区三区| 亚洲精品国产第一综合99久久| 成人一级片在线观看| 国产亚洲欧洲997久久综合 | 日韩av网站免费在线| 欧美日韩在线播| 亚洲国产精品一区二区久久恐怖片| 一本到不卡免费一区二区| 亚洲视频在线一区| 色综合久久天天综合网| 一区二区三区日韩欧美精品| 色综合视频在线观看| 亚洲精品视频在线| 在线观看精品一区| 午夜精品在线视频一区| 欧美在线免费视屏| 午夜伦欧美伦电影理论片| 美女网站在线免费欧美精品| 亚洲欧美偷拍卡通变态| 欧美日韩一区高清| 成人一区在线观看| 中文字幕av资源一区| 国产成人av电影在线观看| 欧美激情一区二区三区全黄| 国产69精品久久久久777| 日本一二三不卡| 99亚偷拍自图区亚洲| 亚洲自拍欧美精品| 欧美日韩国产大片| 免费成人深夜小野草| 精品国产污污免费网站入口| 国产一区二区三区免费播放| 国产精品色哟哟| 91成人免费在线视频| 奇米888四色在线精品| 日韩精品一区二区三区视频播放 | 亚洲精品成人天堂一二三| 欧美日韩国产免费一区二区| 免费人成网站在线观看欧美高清| 精品国产凹凸成av人网站| 岛国av在线一区| 亚洲国产成人高清精品| 精品国产自在久精品国产| 久久精品视频在线看| 中文字幕一区二区在线播放| 麻豆91精品视频| 欧美色网一区二区| 久久99国产精品成人| 亚洲欧洲一区二区在线播放| 欧美日韩国产精品成人| 国产一区二区精品久久91| 亚洲色图在线视频| 日韩欧美亚洲国产另类| av电影在线不卡| 青娱乐精品在线视频| 国产精品久久毛片a| 欧美日韩视频在线一区二区| 国产成人综合自拍| 亚洲成人你懂的| 国产亚洲精品bt天堂精选| 欧美色网站导航| 成人午夜在线视频| 丝袜诱惑制服诱惑色一区在线观看 | 国产一区二区精品久久99| 依依成人综合视频| 精品精品国产高清一毛片一天堂| 色综合天天天天做夜夜夜夜做| 美女久久久精品| 亚洲一区二区三区激情| 久久精品人人做人人爽97 | 亚洲电影在线免费观看| 中文字幕亚洲精品在线观看| av在线播放一区二区三区| 蜜臀久久久久久久| 一区二区成人在线| 日本一区二区三区四区| 日韩欧美国产一二三区|