SQLSelectParser Properties |
The SQLSelectParser type exposes the following members.
Name | Description | |
---|---|---|
Columns |
Gets the ordered list of selected columns in the SELECT statement.
| |
From |
Gets/sets the FROM clause (without the FROM keyword), if any.
A FROM clause is required for proper parsing.
| |
GroupBy |
Gets/sets the GROUP BY clause (without the GROUP BY keywords), if any.
| |
Having |
Gets/sets the HAVING clause (without the HAVING keyword), if any.
| |
OrderBy |
Gets/sets the ORDER BY clause (without the ORDER BY keywords), if any.
| |
Valid |
Gets whether or not the SQL SELECT statement provided to the constructor was parsed successfully.
| |
Where |
Gets/sets the WHERE clause (without the WHERE keyword), if any.
In addition to setting this directly, you can use the AddFilter(String) method to
add additional filters without having to worry about whether an AND conjunction is required.
|