Similar to above, but accepts the whole structure as an update param. Filters by the PK, updates ALL the values in the filtered rows.
value of the relation's PK to filter by
the structure that will provide values for the UPDATE
Connection c; // an established connection struct User { @PK int id; int a; int b; } c.update(1, myUser);
See Implementation
Similar to above, but accepts the whole structure as an update param. Filters by the PK, updates ALL the values in the filtered rows.