Click or drag to resize
CqlReader Class
Reads a forward-only stream of rows from Cassandra.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    System.Data.CommonDbDataReader
      Cassandra.DataCqlReader

Namespace: Cassandra.Data
Assembly: Cassandra (in Cassandra.dll) Version: 3.2.0
Syntax
C#
public class CqlReader : DbDataReader

The CqlReader type exposes the following members.

Methods
  NameDescription
Public methodClose (Overrides DbDataReaderClose.)
Public methodGetBoolean
Gets the value of the specified column as a Boolean.
(Overrides DbDataReaderGetBoolean(Int32).)
Public methodGetByte
Gets the 8-bit unsigned integer value of the specified column.
(Overrides DbDataReaderGetByte(Int32).)
Public methodGetBytes
Reads a stream of bytes from the specified column offset into the buffer as an array, starting at the given buffer offset.
(Overrides DbDataReaderGetBytes(Int32, Int64, Byte, Int32, Int32).)
Public methodGetChar
Gets the character value of the specified column.
(Overrides DbDataReaderGetChar(Int32).)
Public methodGetChars
Reads a stream of characters from the specified column offset into the buffer as an array, starting at the given buffer offset.
(Overrides DbDataReaderGetChars(Int32, Int64, Char, Int32, Int32).)
Public methodGetDataTypeName
Gets the data type information for the specified field.
(Overrides DbDataReaderGetDataTypeName(Int32).)
Public methodGetDateTime
Gets the date and time data value of the specified field.
(Overrides DbDataReaderGetDateTime(Int32).)
Public methodGetDecimal
Gets the fixed-position numeric value of the specified field.
(Overrides DbDataReaderGetDecimal(Int32).)
Public methodGetDouble
Gets the double-precision floating point number of the specified field.
(Overrides DbDataReaderGetDouble(Int32).)
Public methodGetEnumerator (Overrides DbDataReaderGetEnumerator.)
Public methodGetFieldType
Gets the Type information corresponding to the type of Object that would be returned from GetValue(Int32).
(Overrides DbDataReaderGetFieldType(Int32).)
Public methodGetFloat
Gets the single-precision floating point number of the specified field.
(Overrides DbDataReaderGetFloat(Int32).)
Public methodGetGuid
Returns the GUID value of the specified field.
(Overrides DbDataReaderGetGuid(Int32).)
Public methodGetInt16
Gets the 16-bit signed integer value of the specified field.
(Overrides DbDataReaderGetInt16(Int32).)
Public methodGetInt32
Gets the 32-bit signed integer value of the specified field.
(Overrides DbDataReaderGetInt32(Int32).)
Public methodGetInt64
Gets the 64-bit signed integer value of the specified field.
(Overrides DbDataReaderGetInt64(Int32).)
Public methodGetName
Gets the name for the field to find.
(Overrides DbDataReaderGetName(Int32).)
Public methodGetOrdinal
Return the index of the named field.
(Overrides DbDataReaderGetOrdinal(String).)
Public methodGetSchemaTable (Overrides DbDataReaderGetSchemaTable.)
Public methodGetString (Overrides DbDataReaderGetString(Int32).)
Public methodGetValue
Return the value of the specified field.
(Overrides DbDataReaderGetValue(Int32).)
Public methodGetValues
Populates an array of objects with the column values of the current record.
(Overrides DbDataReaderGetValues(Object).)
Public methodIsDBNull
Return whether the specified field is set to null.
(Overrides DbDataReaderIsDBNull(Int32).)
Public methodNextResult
Advances the data reader to the next result, when reading the results of batch SQL statements.
(Overrides DbDataReaderNextResult.)
Public methodRead
Advances the IDataReader to the next record.
(Overrides DbDataReaderRead.)
Top
Properties
  NameDescription
Public propertyDepth (Overrides DbDataReaderDepth.)
Public propertyFieldCount
Gets the number of columns in the current row.
(Overrides DbDataReaderFieldCount.)
Public propertyHasRows (Overrides DbDataReaderHasRows.)
Public propertyIsClosed (Overrides DbDataReaderIsClosed.)
Public propertyItemInt32 (Overrides DbDataReaderItemInt32.)
Public propertyItemString (Overrides DbDataReaderItemString.)
Public propertyRecordsAffected (Overrides DbDataReaderRecordsAffected.)
Top
See Also