Show / Hide Table of Contents

Class SqlInstancesExecuteSqlResponse

Execute SQL statements response.

Inheritance
object
SqlInstancesExecuteSqlResponse
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.SQLAdmin.v1.Data
Assembly: Google.Apis.SQLAdmin.v1.dll
Syntax
public class SqlInstancesExecuteSqlResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Messages

A list of notices and warnings generated during query execution. For PostgreSQL, this includes all notices and warnings. For MySQL, this includes warnings generated by the last executed statement. To retrieve all warnings for a multi-statement query, SHOW WARNINGS must be executed after each statement.

Declaration
[JsonProperty("messages")]
public virtual IList<Message> Messages { get; set; }
Property Value
Type Description
IList<Message>

Metadata

The additional metadata information regarding the execution of the SQL statements.

Declaration
[JsonProperty("metadata")]
public virtual Metadata Metadata { get; set; }
Property Value
Type Description
Metadata

Results

The list of results after executing all the SQL statements.

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

Status

Contains the error from the database if the SQL execution failed.

Declaration
[JsonProperty("status")]
public virtual Status Status { get; set; }
Property Value
Type Description
Status

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX