QueryResultCopyimport type { QueryResult } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";QueryResult contains the result of executing a single SQL statement. interface QueryResult {columns?: Column[];message?: string;partialResult?: boolean;rows?: Row[];}§Properties§columns?: Column[][src]List of columns included in the result. This also includes the data type of the column. §message?: string[src]Message related to the SQL execution result. §partialResult?: boolean[src]Set to true if the SQL execution's result is truncated due to size limits. §rows?: Row[][src]Rows returned by the SQL statement.