Connection.remove

Deletes the record in the given table, by its PK

  1. int remove(U id)
    struct Connection
    int
    remove
    (
    T
    U
    )
    (
    U id
    )
  2. int remove(string filter, U vals)

Examples

Connection c; // An established connection
struct User {@PK @serial int id; int a }
c.remove!User(1);

Meta