Click or drag to resize
IResultSetValue Interface
An ISQLiteValue that includes ColumnInfo about the value.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public interface IResultSetValue : ISQLiteValue

The IResultSetValue type exposes the following members.

Methods
  NameDescription
Public methodToBlob
Returns the SQLiteValue as a byte array. Casting if necessary.
(Inherited from ISQLiteValue.)
Public methodToDouble
Returns the SQLiteValue as a double. Casting if necessary.
(Inherited from ISQLiteValue.)
Public methodToInt
Returns the SQLiteValue as an int. Casting if necessary.
(Inherited from ISQLiteValue.)
Public methodToInt64
Returns the SQLiteValue as a long. Casting if necessary.
(Inherited from ISQLiteValue.)
Public methodToString
Returns the SQLiteValue as a string. Casting if necessary.
(Inherited from ISQLiteValue.)
Top
Extension Methods
  NameDescription
Public Extension MethodToBool
Returns the SQLiteValue as a Boolean.
(Defined by SQLiteValue.)
Public Extension MethodToByte
Returns the SQLiteValue as a Byte.
(Defined by SQLiteValue.)
Public Extension MethodToDateTime
Returns the SQLiteValue as a DateTime.
(Defined by SQLiteValue.)
Public Extension MethodToDateTimeOffset
Returns the SQLiteValue as a DateTimeOffset.
(Defined by SQLiteValue.)
Public Extension MethodToDecimal
Returns the SQLiteValue as a Decimal.
(Defined by SQLiteValue.)
Public Extension MethodToFloat
Returns the SQLiteValue as a Single.
(Defined by SQLiteValue.)
Public Extension MethodToGuid
Returns the SQLiteValue as a Guid.
(Defined by SQLiteValue.)
Public Extension MethodToSByte
Returns the SQLiteValue as a SByte.
(Defined by SQLiteValue.)
Public Extension MethodToShort
Returns the SQLiteValue as a Int16.
(Defined by SQLiteValue.)
Public Extension MethodToTimeSpan
Returns the SQLiteValue as a TimeSpan.
(Defined by SQLiteValue.)
Public Extension MethodToUInt16
Returns the SQLiteValue as a UInt16.
(Defined by SQLiteValue.)
Public Extension MethodToUInt32
Returns the SQLiteValue as a UInt32.
(Defined by SQLiteValue.)
Public Extension MethodToUri
Returns the SQLiteValue as a Uri.
(Defined by SQLiteValue.)
Top
Properties
  NameDescription
Public propertyColumnInfo
The value's column info.
Public propertyLength
The length of the value subject to SQLite value casting rules.
(Inherited from ISQLiteValue.)
Public propertySQLiteType
The underlying SQLiteType of the value.
(Inherited from ISQLiteValue.)
Top
See Also