FlexReport for UWP | ComponentOne
C1.UWP.FlexReport Assembly / C1.Xaml.FlexReport Namespace / RecordSourceType Enumeration

In This Topic
    RecordSourceType Enumeration
    In This Topic
    Specifies the type of the record source, such as a table, a stored procedure, or an SQL query.
    Syntax
    'Declaration
     
    Public Enum RecordSourceType 
       Inherits System.Enum
    public enum RecordSourceType : System.Enum 
    Members
    MemberDescription
    AutoThe data source type is automatically determined based on the syntax used by the DataSource.RecordSource. Using this value should be avoided if the record source is a table, a stored procedure, or an SQL query, as connecting to the data source may be slow.
    StoredProcedureThe record source is the name of a stored procedure in the data source specified by the connection string.
    TableDirectThe record source is the name of a table or a view in the data source specified by the connection string.
    TextThe record source is an SQL query.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Xaml.FlexReport.RecordSourceType

    See Also