Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SqlInstancesExecuteSqlResponse

import type { SqlInstancesExecuteSqlResponse } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";

Execute SQL statements response.

interface SqlInstancesExecuteSqlResponse {
messages?: Message[];
metadata?: Metadata;
results?: QueryResult[];
}

§Properties

§
messages?: Message[]
[src]

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.

§
metadata?: Metadata
[src]

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

§
results?: QueryResult[]
[src]

The list of results after executing all the SQL statements.