System.Data.ProviderBase.DecimalReaderCacheContainer.FetchInternal C# (CSharp) 메소드

FetchInternal() 보호된 메소드

protected FetchInternal ( ResultSet rs, int columnIndex ) : void
rs ResultSet
columnIndex int
리턴 void
		protected override void FetchInternal(ResultSet rs, int columnIndex)
		{
			java.math.BigDecimal bigDecimal = rs.getBigDecimal(columnIndex);
			if (bigDecimal != null) {
				_d = (decimal)vmw.common.PrimitiveTypeUtils.BigDecimalToDecimal(bigDecimal);
			}
		}