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)))
|
||||
t.id.value = to!int(row[0]);
|
||||
} else {
|
||||
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"); }
|
||||
|
|
Loading…
Reference in New Issue