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

ResultChanges

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

Query result of changes made to the database.

These may be stale (reflecting the results of a previous query) if the associated query was not of a type to make changes. These may be undefined if the driver doesn't support these, or if it knows that they weren't relevant to the associated query.

class ResultChanges<Meta extends driver.MetaBase> {
constructor(lastInsertedId?: Meta["ResultValue"], affectedRows?: number);
}

§Type Parameters

§Constructors

§
new ResultChanges(lastInsertedId?: Meta["ResultValue"], affectedRows?: number)
[src]