summaryrefslogtreecommitdiff
path: root/src/database/type_to_sql.cpp
blob: 5de012e69d5e953e6b63d551cb7fdf6c97325e75 (plain)
1
2
3
4
5
6
7
#include <database/type_to_sql.hpp>

template <> const std::string TypeToSQLType<int>::type = "INTEGER";
template <> const std::string TypeToSQLType<std::size_t>::type = "INTEGER";
template <> const std::string TypeToSQLType<long>::type = "INTEGER";
template <> const std::string TypeToSQLType<bool>::type = "INTEGER";
template <> const std::string TypeToSQLType<std::string>::type = "TEXT";