Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denodb/lib/model.ts>Model#update

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Latest
method Model.prototype.update
import { Model } from "https://deno.land/x/denodb@v1.4.0/lib/model.ts";

Update this record using its current field values.

flight.destination = "London";
await flight.update();