SqliteDataReader.GetStream(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.