Click or drag to resize
FrameReadReader Method
Read data from `IDataReader`. The method reads all rows from the data reader and for each row, gets all the columns. When a value is `DBNull`, it is treated as missing. The types of created vectors are determined by the field types reported by the data reader. [category:Input and output]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<int, string> ReadReader(
	IDataReader reader
)

Parameters

reader
Type: System.DataIDataReader

[Missing <param name="reader"/> documentation for "M:Deedle.Frame.ReadReader(System.Data.IDataReader)"]

Return Value

Type: FrameInt32, String

[Missing <returns> documentation for "M:Deedle.Frame.ReadReader(System.Data.IDataReader)"]

See Also