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

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

?? resultset.java

?? mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序 mysql jdbc驅動程序
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
		if (index == null) {			index = (Integer) this.fullColumnNameToIndex.get(columnName);		}		if (index != null) {			return index.intValue() + 1;		}		// Try this inefficient way, now		for (int i = 0; i < this.fields.length; i++) {			if (this.fields[i].getName().equalsIgnoreCase(columnName)) {				return i + 1;			} else if (this.fields[i].getFullName()					.equalsIgnoreCase(columnName)) {				return i + 1;			}		}		throw SQLError.createSQLException(Messages.getString("ResultSet.Column____112")				+ columnName				+ Messages.getString("ResultSet.___not_found._113"), //$NON-NLS-1$ //$NON-NLS-2$				SQLError.SQL_STATE_COLUMN_NOT_FOUND);	}	/**	 * JDBC 2.0	 * 	 * <p>	 * Moves to the first row in the result set.	 * </p>	 * 	 * @return true if on a valid row, false if no rows in the result set.	 * 	 * @exception SQLException	 *                if a database-access error occurs, or result set type is	 *                TYPE_FORWARD_ONLY.	 */	public boolean first() throws SQLException {		checkClosed();		if (this.rowData.isEmpty()) {			return false;		}		if (this.onInsertRow) {			this.onInsertRow = false;		}		if (this.doingUpdates) {			this.doingUpdates = false;		}		this.rowData.beforeFirst();		this.thisRow = this.rowData.next();		return true;	}	/**	 * JDBC 2.0 Get an array column.	 * 	 * @param i	 *            the first column is 1, the second is 2, ...	 * 	 * @return an object representing an SQL array	 * 	 * @throws SQLException	 *             if a database error occurs	 * @throws NotImplemented	 *             DOCUMENT ME!	 */	public java.sql.Array getArray(int i) throws SQLException {		checkColumnBounds(i);				throw new NotImplemented();	}	/**	 * JDBC 2.0 Get an array column.	 * 	 * @param colName	 *            the column name	 * 	 * @return an object representing an SQL array	 * 	 * @throws SQLException	 *             if a database error occurs	 * @throws NotImplemented	 *             DOCUMENT ME!	 */	public java.sql.Array getArray(String colName) throws SQLException {		return getArray(findColumn(colName));	}	/**	 * A column value can be retrieved as a stream of ASCII characters and then	 * read in chunks from the stream. This method is particulary suitable for	 * retrieving large LONGVARCHAR values. The JDBC driver will do any	 * necessary conversion from the database format into ASCII.	 * 	 * <p>	 * <B>Note:</B> All the data in the returned stream must be read prior to	 * getting the value of any other column. The next call to a get method	 * implicitly closes the stream. Also, a stream may return 0 for available()	 * whether there is data available or not.	 * </p>	 * 	 * @param columnIndex	 *            the first column is 1, the second is 2, ...	 * 	 * @return a Java InputStream that delivers the database column value as a	 *         stream of one byte ASCII characters. If the value is SQL NULL	 *         then the result is null	 * 	 * @exception SQLException	 *                if a database access error occurs	 * 	 * @see getBinaryStream	 */	public InputStream getAsciiStream(int columnIndex) throws SQLException {		checkRowPos();		if (!this.isBinaryEncoded) {			return getBinaryStream(columnIndex);		}		return getNativeBinaryStream(columnIndex);	}	/**	 * DOCUMENT ME!	 * 	 * @param columnName	 *            DOCUMENT ME!	 * 	 * @return DOCUMENT ME!	 * 	 * @throws SQLException	 *             DOCUMENT ME!	 */	public InputStream getAsciiStream(String columnName) throws SQLException {		return getAsciiStream(findColumn(columnName));	}	/**	 * JDBC 2.0 Get the value of a column in the current row as a	 * java.math.BigDecimal object.	 * 	 * @param columnIndex	 *            the first column is 1, the second is 2, ...	 * 	 * @return the column value (full precision); if the value is SQL NULL, the	 *         result is null	 * 	 * @exception SQLException	 *                if a database-access error occurs.	 */	public BigDecimal getBigDecimal(int columnIndex) throws SQLException {		if (!this.isBinaryEncoded) {			String stringVal = getString(columnIndex);			BigDecimal val;			if (stringVal != null) {				if (stringVal.length() == 0) {										val = new BigDecimal(							convertToZeroLiteralStringWithEmptyCheck());					return val;				}				try {					val = new BigDecimal(stringVal);					return val;				} catch (NumberFormatException ex) {					throw SQLError.createSQLException(Messages							.getString("ResultSet.Bad_format_for_BigDecimal",									new Object[] { stringVal,											new Integer(columnIndex) }),							SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$				}			}			return null;		}		return getNativeBigDecimal(columnIndex);	}	/**	 * Get the value of a column in the current row as a java.math.BigDecimal	 * object	 * 	 * @param columnIndex	 *            the first column is 1, the second is 2...	 * @param scale	 *            the number of digits to the right of the decimal	 * 	 * @return the column value; if the value is SQL NULL, null	 * 	 * @exception SQLException	 *                if a database access error occurs	 * 	 * @deprecated	 */	public BigDecimal getBigDecimal(int columnIndex, int scale)			throws SQLException {		if (!this.isBinaryEncoded) {			String stringVal = getString(columnIndex);			BigDecimal val;			if (stringVal != null) {				if (stringVal.length() == 0) {					val = new BigDecimal(							convertToZeroLiteralStringWithEmptyCheck());					try {						return val.setScale(scale);					} catch (ArithmeticException ex) {						try {							return val									.setScale(scale, BigDecimal.ROUND_HALF_UP);						} catch (ArithmeticException arEx) {							throw SQLError.createSQLException(									Messages											.getString("ResultSet.Bad_format_for_BigDecimal____124") //$NON-NLS-1$											+ stringVal											+ Messages													.getString("ResultSet.___in_column__125")											+ columnIndex											+ "(" //$NON-NLS-1$											+ this.fields[columnIndex - 1]											+ ").",									SQLError.SQL_STATE_ILLEGAL_ARGUMENT);						}					}				}				try {					val = new BigDecimal(stringVal);				} catch (NumberFormatException ex) {					if (this.fields[columnIndex - 1].getMysqlType() == MysqlDefs.FIELD_TYPE_BIT) {						long valueAsLong = getNumericRepresentationOfSQLBitType(columnIndex);						val = new BigDecimal(valueAsLong);					} else {						throw SQLError.createSQLException(Messages							.getString("ResultSet.Bad_format_for_BigDecimal",									new Object[] { new Integer(columnIndex),											stringVal }),							SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$						}				}				try {					return val.setScale(scale);				} catch (ArithmeticException ex) {					try {						return val.setScale(scale, BigDecimal.ROUND_HALF_UP);					} catch (ArithmeticException arithEx) {						throw SQLError.createSQLException(Messages.getString(								"ResultSet.Bad_format_for_BigDecimal",								new Object[] { new Integer(columnIndex),										stringVal }),								SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$					}				}			}			return null;		}		return getNativeBigDecimal(columnIndex, scale);	}	/**	 * JDBC 2.0 Get the value of a column in the current row as a	 * java.math.BigDecimal object.	 * 	 * @param columnName	 *            the name of the column to retrieve the value from	 * 	 * @return the BigDecimal value in the column	 * 	 * @throws SQLException	 *             if an error occurs	 */	public BigDecimal getBigDecimal(String columnName) throws SQLException {		return getBigDecimal(findColumn(columnName));	}	/**	 * DOCUMENT ME!	 * 	 * @param columnName	 *            DOCUMENT ME!	 * @param scale	 *            DOCUMENT ME!	 * 	 * @return DOCUMENT ME!	 * 	 * @throws SQLException	 *             DOCUMENT ME!	 * 	 * @deprecated	 */	public BigDecimal getBigDecimal(String columnName, int scale)			throws SQLException {		return getBigDecimal(findColumn(columnName), scale);	}	private final BigDecimal getBigDecimalFromString(String stringVal,			int columnIndex, int scale) throws SQLException {		BigDecimal bdVal;		if (stringVal != null) {			if (stringVal.length() == 0) {				bdVal = new BigDecimal(convertToZeroLiteralStringWithEmptyCheck());				try {					return bdVal.setScale(scale);				} catch (ArithmeticException ex) {					try {						return bdVal.setScale(scale, BigDecimal.ROUND_HALF_UP);					} catch (ArithmeticException arEx) {						throw new SQLException(Messages								.getString("ResultSet.Bad_format_for_BigDecimal",										new Object[] { stringVal,												new Integer(columnIndex) }),								SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$					}				}			}			try {				try {					return new BigDecimal(stringVal).setScale(scale);				} catch (ArithmeticException ex) {					try {						return new BigDecimal(stringVal).setScale(scale,								BigDecimal.ROUND_HALF_UP);					} catch (ArithmeticException arEx) {						throw new SQLException(Messages								.getString("ResultSet.Bad_format_for_BigDecimal",										new Object[] { stringVal,												new Integer(columnIndex) }),								SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$					}				}			} catch (NumberFormatException ex) {				if (this.fields[columnIndex - 1].getMysqlType() == MysqlDefs.FIELD_TYPE_BIT) {					long valueAsLong = getNumericRepresentationOfSQLBitType(columnIndex);					try {						return new BigDecimal(valueAsLong).setScale(scale);					} catch (ArithmeticException arEx1) {						try {							return new BigDecimal(valueAsLong).setScale(scale,									BigDecimal.ROUND_HALF_UP);						} catch (ArithmeticException arEx2) {							throw new SQLException(Messages									.getString("ResultSet.Bad_format_for_BigDecimal",											new Object[] { stringVal,													new Integer(columnIndex) }),									SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$						}					}				}								if (this.fields[columnIndex - 1].getMysqlType() == MysqlDefs.FIELD_TYPE_TINY &&						this.connection.getTinyInt1isBit() && this.fields[columnIndex - 1].getLength() == 1) {					return new BigDecimal(stringVal.equalsIgnoreCase("true") ? 1 : 0).setScale(scale);				}								throw new SQLException(Messages						.getString("ResultSet.Bad_format_for_BigDecimal",								new Object[] { stringVal,										new Integer(columnIndex) }),						SQLError.SQL_STATE_ILLEGAL_ARGUMENT); //$NON-NLS-1$			}		}				return null;	}	/**	 * A column value can also be retrieved as a binary stream. This method is	 * suitable for retrieving LONGVARBINARY values.	 * 	 * @param columnIndex	 *            the first column is 1, the second is 2...	 * 	 * @return a Java InputStream that delivers the database column value as a	 *         stream of bytes. If the value is SQL NULL, then the result is	 *         null	 * 	 * @exception SQLException	 *                if a database access error occurs	 * 	 * @see getAsciiStream	 * @see getUnicodeStream	 */	public InputStream getBinaryStream(int columnIndex) throws SQLException {		checkRowPos();		if (!this.isBinaryEncoded) {			byte[] b = getBytes(columnIndex);			if (b != null) {				return new ByteArrayInputStream(b);			}			return null;		}		return getNativeBinaryStream(columnIndex);	}	/**	 * DOCUMENT ME!	 * 	 * @param columnName	 *            DOCUMENT ME!	 * 	 * @return DOCUMENT ME!	 * 	 * @throws SQLException	 *             DOCUMENT ME!	 */	public InputStream getBinaryStream(String columnName) throws SQLException {		return getBinaryStream(findColumn(columnName));	}	/**	 * JDBC 2.0 Get a BLOB column.	 * 	 * @param columnIndex	 *            the first column is 1, the second is 2, ...	 * 	 * @return an object representing a BLOB	 * 	 * @throws SQLException	 *             if an error occurs.	 */	public java.sql.Blob getBlob(int columnIndex) throws SQLException {		if (!this.isBinaryEncoded) {			checkRowPos();			checkColumnBounds(columnIndex);			if (this.thisRow[columnIndex - 1] == null) {				this.wasNullFlag = true;			} else {				this.wasNullFlag = false;			}						if (this.wasNullFlag) {				return null;			}			if (!this.connection.getEmulateLocators()) {				return new Blob((byte[]) this.thisRow[columnIndex - 1]);			}			return new BlobFromLocator(this, columnIndex);		}		return getNativeBlob(columnIndex);	}	/**	 * JDBC 2.0 Get a BLOB column.	 * 	 * @param colName	 *            the column name	 * 	 * @return an object representing a BLOB	 * 	 * @throws SQLException	 *             if an error occurs.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一区欧美小说| 精品成人一区二区| 亚洲第一二三四区| 欧美日韩在线直播| 午夜精品久久久久久| 91精品国产91久久久久久一区二区 | 亚洲欧美日韩小说| 欧美在线观看一二区| 五月天丁香久久| 日韩欧美国产三级| 国产伦精品一区二区三区视频青涩| 久久嫩草精品久久久精品一| a在线播放不卡| 亚洲一区二区三区爽爽爽爽爽| 欧美二区乱c少妇| 国产一区二区三区日韩| 亚洲欧美另类在线| 欧美高清dvd| 国产成人欧美日韩在线电影| 亚洲精品久久久蜜桃| 91精品国产综合久久久蜜臀图片| 国产一区久久久| 亚洲色图第一区| 日韩一二三四区| 97久久超碰精品国产| 日产精品久久久久久久性色| 国产色爱av资源综合区| 欧美午夜宅男影院| 韩国欧美一区二区| 亚洲国产精品久久久男人的天堂| 欧美sm极限捆绑bd| 在线看国产一区| 国产美女精品在线| 亚洲国产成人av网| 国产亚洲欧美中文| 3d动漫精品啪啪1区2区免费| 成人av电影在线网| 麻豆视频观看网址久久| 亚洲日本欧美天堂| 欧美精品一区二区久久久| 91在线播放网址| 韩国av一区二区三区| 亚洲国产精品久久艾草纯爱| 国产日韩亚洲欧美综合| 欧美日韩激情一区二区| 国产精品无人区| 国产成人精品网址| 天天综合网 天天综合色| 国产精品女主播av| 精品嫩草影院久久| 欧美日本一道本在线视频| 不卡欧美aaaaa| 麻豆精品在线播放| 亚洲无人区一区| 亚洲激情中文1区| 欧美激情综合在线| 欧美tickling网站挠脚心| 欧美精选一区二区| 色综合久久久久综合| 国产福利精品一区| 国产在线视频一区二区| 日本sm残虐另类| 日韩国产欧美一区二区三区| 国产成人亚洲综合a∨猫咪| 日韩va欧美va亚洲va久久| 一区二区欧美国产| 亚洲免费色视频| 中文字幕一区二区三区乱码在线 | 丁香婷婷综合色啪| 国产资源在线一区| 久久99精品久久只有精品| 日韩和的一区二区| 午夜一区二区三区视频| 亚洲成人av一区| 亚洲成人激情社区| 午夜精品爽啪视频| 午夜激情一区二区| 日韩国产高清在线| 日本va欧美va精品发布| 毛片不卡一区二区| 久久国产麻豆精品| 精品一区二区在线视频| 国产乱妇无码大片在线观看| 韩国在线一区二区| 国产91对白在线观看九色| 国产高清一区日本| 不卡电影免费在线播放一区| 成人aa视频在线观看| 99久久久久久| 在线看国产一区| 欧美一区二区三区播放老司机| 日韩午夜在线播放| 精品福利在线导航| 国产日韩精品一区| 亚洲视频免费观看| 亚洲成人av中文| 国产一区二区三区| 波多野结衣精品在线| 欧美视频一区二| 日韩欧美色综合网站| 国产亚洲美州欧州综合国 | 中文字幕一区免费在线观看| 亚洲三级在线免费| 日本亚洲欧美天堂免费| 福利91精品一区二区三区| 色偷偷久久人人79超碰人人澡 | 欧美一级精品在线| 久久久精品黄色| 亚洲人成网站精品片在线观看| 亚洲一二三级电影| 国内精品国产成人国产三级粉色| 成人国产精品免费观看| 欧美午夜一区二区三区免费大片| 精品精品国产高清一毛片一天堂| 国产精品三级久久久久三级| 日韩精品视频网| 成人黄动漫网站免费app| 欧美色手机在线观看| 2021国产精品久久精品| 亚洲精品乱码久久久久| 久久黄色级2电影| 一本久久a久久精品亚洲| 欧美一卡二卡在线| 一区免费观看视频| 精品一区二区三区在线播放视频| 色噜噜狠狠色综合中国| 日韩精品一区二区三区在线播放| 亚洲欧洲av另类| 美女任你摸久久| 日本丶国产丶欧美色综合| 精品国产成人系列| 亚洲电影在线免费观看| 成人黄色在线看| 欧美精品一区二区三区蜜桃 | 亚洲电影一级黄| 国产福利一区二区三区视频在线| 欧美绝品在线观看成人午夜影视| 国产精品入口麻豆九色| 国内欧美视频一区二区| 欧美日韩国产小视频| 亚洲欧美区自拍先锋| 成人一区在线观看| 久久亚洲春色中文字幕久久久| 亚洲一区二区在线免费看| 成人一级视频在线观看| 精品捆绑美女sm三区| 婷婷久久综合九色国产成人| 99久久亚洲一区二区三区青草 | 6080国产精品一区二区| 亚洲情趣在线观看| 成人午夜电影小说| 久久一夜天堂av一区二区三区| 午夜电影一区二区| 欧美在线影院一区二区| 18欧美亚洲精品| 成人av网站免费观看| 亚洲精品一区二区三区精华液| 久久精品久久久精品美女| 欧美另类变人与禽xxxxx| 一个色在线综合| 色999日韩国产欧美一区二区| 国产精品福利一区二区三区| 国产成人在线观看免费网站| 国产日韩高清在线| 成人国产在线观看| 亚洲欧洲日产国产综合网| 丁香激情综合国产| 国产精品每日更新在线播放网址| 国内精品久久久久影院色| 久久天天做天天爱综合色| 激情五月激情综合网| 久久久一区二区| 国产激情视频一区二区三区欧美| 2014亚洲片线观看视频免费| 国产又粗又猛又爽又黄91精品| 欧美大片一区二区| 国产综合久久久久久久久久久久| 久久久久成人黄色影片| 国产成人三级在线观看| 国产精品久久久久aaaa| 色综合久久久久综合体| 亚洲gay无套男同| 欧美tickle裸体挠脚心vk| 国产成人午夜片在线观看高清观看| 国产亚洲欧美日韩日本| 91首页免费视频| 亚洲第四色夜色| 欧美白人最猛性xxxxx69交| 国产精品亚洲人在线观看| 国产精品电影一区二区三区| 日本久久一区二区| 日本特黄久久久高潮| 久久精品人人做人人综合| 99r精品视频| 婷婷开心激情综合| 国产亚洲午夜高清国产拍精品 | 久久精品人人做人人爽97| 99re成人精品视频| 五月天欧美精品| 欧美国产一区二区在线观看|