mirror of https://github.com/adamdruppe/arsd.git
database_generation: Don't require an id attribute for insert
This commit is contained in:
parent
d86bc412fc
commit
d8c45fe1be
|
@ -341,11 +341,28 @@ void insert(O)(ref O t, Database db) {
|
||||||
foreach(row; db.query("SELECT max(id) FROM " ~ toTableName(O.stringof)))
|
foreach(row; db.query("SELECT max(id) FROM " ~ toTableName(O.stringof)))
|
||||||
t.id.value = to!int(row[0]);
|
t.id.value = to!int(row[0]);
|
||||||
} else {
|
} else {
|
||||||
foreach(row; builder.execute(db, "RETURNING id")) // FIXME: postgres-ism
|
static if (__traits(hasMember, O, "id"))
|
||||||
t.id.value = to!int(row[0]);
|
{
|
||||||
|
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 {
|
class RecordNotFoundException : Exception {
|
||||||
this() { super("RecordNotFoundException"); }
|
this() { super("RecordNotFoundException"); }
|
||||||
|
|
Loading…
Reference in New Issue