Class QueryResult
QueryResult contains the result of executing a single SQL statement.
Implements
Inherited Members
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class QueryResult : IDirectResponseSchema
Properties
Columns
List of columns included in the result. This also includes the data type of the column.
Declaration
[JsonProperty("columns")]
public virtual IList<Column> Columns { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Column> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Message
Message related to the SQL execution result.
Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
PartialResult
Set to true if the SQL execution's result is truncated due to size limits or an error retrieving results.
Declaration
[JsonProperty("partialResult")]
public virtual bool? PartialResult { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
Rows
Rows returned by the SQL statement.
Declaration
[JsonProperty("rows")]
public virtual IList<Row> Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Row> |
Status
If results were truncated due to an error, details of that error.
Declaration
[JsonProperty("status")]
public virtual Status Status { get; set; }
Property Value
| Type | Description |
|---|---|
| Status |