System.Data.ProviderBase.TimestampReaderCacheContainer.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) {
			Timestamp ts = rs.getTimestamp(columnIndex);
			if (ts != null) {
				_d = new DateTime(DbConvert.JavaTimestampToClrTicks(ts));
			}
		}
	}
TimestampReaderCacheContainer