Inserts the given structure, returning whatever columns are specified by the second param as a normal Result.
Equivalent to specifying RETURNING at the end of the query.
Connection c; // an established connection struct Data { @PK int id, int a; int b; } Data myData; auto result = c.insert(myData, "id");
See Implementation
Inserts the given structure, returning whatever columns are specified by the second param as a normal Result.
Equivalent to specifying RETURNING at the end of the query.