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

ExecuteSqlQueryResponse

import type { ExecuteSqlQueryResponse } from "https://googleapis.deno.dev/v1/connectors:v2.ts";

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

interface ExecuteSqlQueryResponse {
results?: {
[key: string]: any;
}
[]
;
}

§Properties

§
results?: {
[key: string]: any;
}
[]
[src]

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.