SqliteDataReader.GetStream(Int32) Method

Definition

Retrieves data as a Stream. If the reader includes rowid (or any of its aliases), a SqliteBlob is returned. Otherwise, the all of the data is read into memory and a MemoryStream is returned.

public override System.IO.Stream GetStream (int ordinal);
override this.GetStream : int -> System.IO.Stream
Public Overrides Function GetStream (ordinal As Integer) As Stream

Parameters

ordinal
Int32

The zero-based column ordinal.

Returns

The returned object.

Applies to