update<Tbl extends Table, R> method

UpdateStatement<Tbl, R> update<Tbl extends Table, R>(
  1. TableInfo<Tbl, R> table
)

Starts an UpdateStatement for the given table. You can use that statement to update individual rows in that table by setting a where clause on that table and then use UpdateStatement.write.

Implementation

UpdateStatement<Tbl, R> update<Tbl extends Table, R>(
        TableInfo<Tbl, R> table) =>
    UpdateStatement(this, table);