Represents a query to be performed on the 1010data Insights Platform. More...
Public Member Functions | |
Query (String path, String ops) | |
Constructs a query. More... | |
Query (String ops) | |
Constructs a query. More... | |
Query | Rebase (String path) |
Copy the query to run against a different table. More... | |
Table | RunOn (Session session) |
Runs the query on the given session. More... | |
Static Public Member Functions | |
static Query | QueryTable (String path) |
Creates a query that accesses a table. More... | |
Public Attributes | |
readonly String | Ops |
The operations for this query. | |
readonly String | BasePath |
Table path to run this query on when no path is given. | |
Properties | |
Table | Results [get, set] |
Returns a copy of the most recent run results with a frehs local cache. | |
Represents a query to be performed on the 1010data Insights Platform.
TenTenSDK.Query.Query | ( | String | path, |
String | ops | ||
) |
Constructs a query.
path | The table path |
ops | Operations (XML) of the query. |
TenTenSDK.Query.Query | ( | String | ops | ) |
Constructs a query.
ops | Operations (XML) of the query. |
|
static |
Creates a query that accesses a table.
path | of the table to run the query on |
Query TenTenSDK.Query.Rebase | ( | String | path | ) |
Copy the query to run against a different table.
path | The path of the table to use instead of BasePath |
Runs the query on the given session.
session | What session to run the query on. |
References TenTenSDK.Session.RunQuery().