Nevron Open Vision Documentation
Nevron.Nov.Text.Data Namespace / NDataSourceFormat Class / ParseSelectQuery Method
The SELECT query to parse. Cannot be null and should be a valid SELECT query.
The determined table name.
The names of the columns that take part in the SELECT query or null if all columns should be used.


In This Topic
    ParseSelectQuery Method
    In This Topic
    Obtains the column names and the table name from the given SELECT query. Throws an exception on error.
    Syntax
    'Declaration
     
    
    Protected Overridable Sub ParseSelectQuery( _
       ByVal selectQuery As System.String, _
       ByRef tableName As System.String, _
       ByRef columnNames() As System.String _
    ) 
    'Usage
     
    
    Dim instance As NDataSourceFormat
    Dim selectQuery As System.String
    Dim tableName As System.String
    Dim columnNames() As System.String
     
    instance.ParseSelectQuery(selectQuery, tableName, columnNames)
    protected virtual void ParseSelectQuery( 
       System.string selectQuery,
       out System.string tableName,
       out System.string[] columnNames
    )

    Parameters

    selectQuery
    The SELECT query to parse. Cannot be null and should be a valid SELECT query.
    tableName
    The determined table name.
    columnNames
    The names of the columns that take part in the SELECT query or null if all columns should be used.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also