database_generation: Don't require an id attribute for insert

This commit is contained in:
MoonlightSentinel 2021-05-07 22:12:52 +02:00
parent d86bc412fc
commit d8c45fe1be
No known key found for this signature in database
GPG Key ID: 1A1A60AECDC956AB
1 changed files with 19 additions and 2 deletions

View File

@ -341,11 +341,28 @@ void insert(O)(ref O t, Database db) {
foreach(row; db.query("SELECT max(id) FROM " ~ toTableName(O.stringof)))
t.id.value = to!int(row[0]);
} else {
foreach(row; builder.execute(db, "RETURNING id")) // FIXME: postgres-ism
t.id.value = to!int(row[0]);
static if (__traits(hasMember, O, "id"))
{
foreach(row; builder.execute(db, "RETURNING id")) // FIXME: postgres-ism
t.id.value = to!int(row[0]);
}
else
{
builder.execute(db);
}
}
}
// Check that insert doesn't require an `id`
unittest
{
static struct NoPK
{
int a;
}
alias test = insert!NoPK;
}
///
class RecordNotFoundException : Exception {
this() { super("RecordNotFoundException"); }