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
§
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.
§
results?: QueryResult[]
[src]The list of results after executing all the SQL statements.