System.Data.ProviderBase.TimeSpanReaderCacheContainer.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)
		{
			Time t = rs.getTime(columnIndex);
			if (t != null) {				
				_t = new TimeSpan(DbConvert.JavaTimeToClrTicks(t));
			}
		}
TimeSpanReaderCacheContainer