Interface IRecord

    Definition

    Namespace:
    Tizen.Data.Tdbc
    Assembly:
    Tizen.Data.Tdbc.dll

    Record class. This class provides the result of query.

    public interface IRecord : IEnumerator<IRecord>

    Methods

    View Source

    GetBool(int)

    Get bool type value from the record with given index.

    Declaration
    bool GetBool(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    bool
    View Source

    GetChar(int)

    Get char type value from the record with given index.

    Declaration
    char GetChar(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    char
    View Source

    GetChars(int)

    Get chars type value from the record with given index.

    Declaration
    char[] GetChars(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    char[]
    View Source

    GetData(int)

    Get blob type value from the record with given index.

    Declaration
    byte[] GetData(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    byte[]
    View Source

    GetDate(int)

    Get date type value from the record with given index.

    Declaration
    DateTime GetDate(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    DateTime
    View Source

    GetDateTime(int)

    Get datetime type value from the record with given index.

    Declaration
    DateTime GetDateTime(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    DateTime
    View Source

    GetDecimal(int)

    Get decimal type value from the record with given index.

    Declaration
    Decimal GetDecimal(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    Decimal
    View Source

    GetDouble(int)

    Get double type value from the record with given index.

    Declaration
    double GetDouble(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    double
    View Source

    GetFloat(int)

    Get float type value from the record with given index.

    Declaration
    float GetFloat(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    float
    View Source

    GetInt(int)

    Get integer type value from the record with given index.

    Declaration
    int GetInt(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    int
    View Source

    GetInt16(int)

    Get 16-bit signed integer type value from the record with given index.

    Declaration
    short GetInt16(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    short
    View Source

    GetInt64(int)

    Get 64-bit signed integer type value from the record with given index.

    Declaration
    long GetInt64(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    long
    View Source

    GetName(int)

    Get the name from the record with given index.

    Declaration
    string GetName(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    string
    View Source

    GetString(int)

    Get string type value from the record with given index.

    Declaration
    string GetString(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    string
    View Source

    GetTime(int)

    Get time type value from the record with given index.

    Declaration
    TimeSpan GetTime(int columnIndex)
    Parameters
    Type Name Description
    int columnIndex

    The index of value.

    Returns
    Type Description
    TimeSpan
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX