diff options
Diffstat (limited to 'frontend/DB.cpp')
-rw-r--r-- | frontend/DB.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/DB.cpp b/frontend/DB.cpp index 0f52433..1c8ab41 100644 --- a/frontend/DB.cpp +++ b/frontend/DB.cpp @@ -98,6 +98,15 @@ int DBQueryRow::col<int>(int index) const { return this->col<int>(index, 0); } +template <> +unsigned int DBQueryRow::col<unsigned int>(int index, const unsigned int & default_value) const { + return this->col<int>(index, default_value); +} +template <> +unsigned int DBQueryRow::col<unsigned int>(int index) const { + return this->col<unsigned int>(index, 0); +} + DBQueryRowRange DBStatement::rows() { return { *this }; } |