System.Data.ProviderBase.DateTimeReaderCacheContainer.FetchInternal C# (CSharp) Method

FetchInternal() protected method

protected FetchInternal ( ResultSet rs, int columnIndex ) : void
rs ResultSet
columnIndex int
return void
		protected override void FetchInternal(ResultSet rs, int columnIndex)
		{
			Date d = rs.getDate(columnIndex);
			if (d != null) {
				_d = new DateTime(DbConvert.JavaDateToClrTicks(d));
			}
		}
DateTimeReaderCacheContainer