Show / Hide Table of Contents

Class ExecuteSqlQueryResponse

A response returned by the connection after executing the sql query.

Inheritance
object
ExecuteSqlQueryResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Connectors.v2.Data
Assembly: Google.Apis.Connectors.v2.dll
Syntax
public class ExecuteSqlQueryResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Results

In the case of successful execution of the query the response contains results returned by the external system. For example, the result rows of the query are contained in the 'results' Struct list - "results": [ { "field1": "val1", "field2": "val2",.. },.. ] Each Struct row can contain fields any type of like nested Structs or lists.

Declaration
[JsonProperty("results")]
public virtual IList<IDictionary<string, object>> Results { get; set; }
Property Value
Type Description
IList<IDictionary<string, object>>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX