mirror of https://github.com/adamdruppe/arsd.git
Make find work as advertised
This commit is contained in:
parent
06a6a62b27
commit
c587133afe
|
@ -394,14 +394,24 @@ class RecordNotFoundException : Exception {
|
||||||
If you just give a type, it assumes the relevant index is "id".
|
If you just give a type, it assumes the relevant index is "id".
|
||||||
|
|
||||||
+/
|
+/
|
||||||
auto find(alias T)(Database db, int id) {
|
static auto find(alias T)(Database db, int id) {
|
||||||
|
// FIXME:
|
||||||
// FIXME: if T is an index, search by it.
|
|
||||||
// if it is unique, return an individual item.
|
// if it is unique, return an individual item.
|
||||||
// if not, return the array
|
// if not, return the array
|
||||||
|
static if (!is(T)) {
|
||||||
|
static const string fieldName = T.stringof;
|
||||||
|
alias FType = typeof(T); // field type
|
||||||
|
alias TType = __traits(parent, T); // Table type
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
static const string fieldName = "id";
|
||||||
|
alias FType = int;
|
||||||
|
alias TType = T;
|
||||||
|
}
|
||||||
|
|
||||||
foreach(record; db.query("SELECT * FROM " ~ tableNameFor!T() ~ " WHERE id = ?", id)) {
|
string q = "SELECT * FROM " ~ tableNameFor!TType() ~ " WHERE " ~ fieldName ~ " = ?";
|
||||||
T t;
|
foreach(record; db.query(q, id)) {
|
||||||
|
TType t;
|
||||||
populateFromDbRow(t, record);
|
populateFromDbRow(t, record);
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
|
|
Loading…
Reference in New Issue