Re-animated prepared statements

This commit is contained in:
rbock
2014-06-14 17:44:22 +02:00
parent e775e6165e
commit 3d26f9a686
11 changed files with 60 additions and 82 deletions
+3 -5
View File
@@ -65,16 +65,14 @@ namespace sqlpp
return db.remove(*this);
}
/*
template<typename Db>
auto _prepare(Db& db) const
-> prepared_remove_t<Db, remove_t>
-> prepared_remove_t<Db, _statement_t>
{
_check_consistency();
_check_consistency();
return {{}, db.prepare_remove(*this)};
return {{}, db.prepare_remove(*this)};
}
*/
};
};