System.Data.ProviderBase.BytesReaderCacheContainer.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)
		{
			sbyte[] sbyteArray = rs.getBytes(columnIndex);
			if (sbyteArray != null) {
				_b = (byte[])vmw.common.TypeUtils.ToByteArray(sbyteArray);
			}
		}
BytesReaderCacheContainer