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

ResultRow

import { ResultRow } from "https://raw.githubusercontent.com/jeremyBanks/database/0.1.0-dev/sql/sql.ts";

Query result rows.

class ResultRow<Meta extends driver.MetaBase> implements Iterable<Meta["ResultValue"]> {
constructor(driverRow: driver.ResultRow<Meta>, context: Context);
private contextCloser: () => void;
readonly context: Context;
get length();
 
toArray(): Array<Meta["ResultValue"]>;
[Symbol.iterator]();
}

§Type Parameters

§Implements

§
Iterable<Meta["ResultValue"]>
[src]

§Constructors

§
new ResultRow(driverRow: driver.ResultRow<Meta>, context: Context)
[src]

§Properties

§
contextCloser: () => void
[src]
§
length readonly
[src]

§Methods

§
toArray(): Array<Meta["ResultValue"]>
[src]
§
[Symbol.iterator]()
[src]